diff --git a/go/06-airport/airport/baggageHandlingSystem_test.go b/go/06-airport/airport/baggageHandlingSystem_test.go index 673ef56..f1e1bae 100644 --- a/go/06-airport/airport/baggageHandlingSystem_test.go +++ b/go/06-airport/airport/baggageHandlingSystem_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "gitty.informatik.hs-mannheim.de/steger/pr3-code/go/06-airport/airport" + "gitty.informatik.hs-mannheim.de/steger/pr3-sose2026/go/06-airport/airport" ) type BaggageSpyData struct { diff --git a/go/06-airport/airport/checkin_test.go b/go/06-airport/airport/checkin_test.go index 2c3488a..c35db80 100644 --- a/go/06-airport/airport/checkin_test.go +++ b/go/06-airport/airport/checkin_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "gitty.informatik.hs-mannheim.de/steger/pr3-code/go/06-airport/airport" + "gitty.informatik.hs-mannheim.de/steger/pr3-sose2026/go/06-airport/airport" ) type FlightProviderStub struct { diff --git a/go/06-airport/airport/gate_test.go b/go/06-airport/airport/gate_test.go index 0e8f626..0434905 100644 --- a/go/06-airport/airport/gate_test.go +++ b/go/06-airport/airport/gate_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "gitty.informatik.hs-mannheim.de/steger/pr3-code/go/06-airport/airport" + "gitty.informatik.hs-mannheim.de/steger/pr3-sose2026/go/06-airport/airport" ) func TestGateSingleFlight(t *testing.T) { diff --git a/go/06-airport/airport/securityCheck_test.go b/go/06-airport/airport/securityCheck_test.go index 31b8029..71466f4 100644 --- a/go/06-airport/airport/securityCheck_test.go +++ b/go/06-airport/airport/securityCheck_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "gitty.informatik.hs-mannheim.de/steger/pr3-code/go/06-airport/airport" + "gitty.informatik.hs-mannheim.de/steger/pr3-sose2026/go/06-airport/airport" ) func TestSecurityCheck(t *testing.T) { diff --git a/go/06-airport/go.mod b/go/06-airport/go.mod index 970693f..e368c6b 100644 --- a/go/06-airport/go.mod +++ b/go/06-airport/go.mod @@ -1,5 +1,5 @@ -module gitty.informatik.hs-mannheim.de/steger/pr3-code/go/06-airport +module gitty.informatik.hs-mannheim.de/steger/pr3-sose2026/go/06-airport -go 1.25.0 +go 1.26.1 -require github.com/docker/docker v28.3.3+incompatible +require github.com/docker/docker v28.5.2+incompatible diff --git a/go/06-airport/go.sum b/go/06-airport/go.sum index f8039ef..2d40ba5 100644 --- a/go/06-airport/go.sum +++ b/go/06-airport/go.sum @@ -1,2 +1,2 @@ -github.com/docker/docker v28.3.3+incompatible h1:Dypm25kh4rmk49v1eiVbsAtpAsYURjYkaKubwuBdxEI= -github.com/docker/docker v28.3.3+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docker/docker v28.5.2+incompatible h1:DBX0Y0zAjZbSrm1uzOkdr1onVghKaftjlSWt4AFexzM= +github.com/docker/docker v28.5.2+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= diff --git a/go/06-airport/main.go b/go/06-airport/main.go index 39d0587..ff9615b 100644 --- a/go/06-airport/main.go +++ b/go/06-airport/main.go @@ -6,7 +6,7 @@ import ( "os" "strings" - "gitty.informatik.hs-mannheim.de/steger/pr3-code/go/06-airport/airport" + "gitty.informatik.hs-mannheim.de/steger/pr3-sose2026/go/06-airport/airport" ) func main() {