From 89659f766819c7bc05af1facdec171883e60705a Mon Sep 17 00:00:00 2001 From: Sebastian Steger Date: Tue, 7 Apr 2026 13:46:19 +0000 Subject: [PATCH] update repo path --- go/03-modules/go.mod | 4 ++-- go/03-modules/main.go | 4 ++-- go/03-modules/myMath/math_test.go | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/go/03-modules/go.mod b/go/03-modules/go.mod index e56e608..d5f08c0 100644 --- a/go/03-modules/go.mod +++ b/go/03-modules/go.mod @@ -1,5 +1,5 @@ -module gitty.informatik.hs-mannheim.de/steger/pr3-code/go/03-modules +module gitty.informatik.hs-mannheim.de/steger/pr3-sose2026/go/03-modules -go 1.25.0 +go 1.26.1 require github.com/google/uuid v1.6.0 diff --git a/go/03-modules/main.go b/go/03-modules/main.go index 923a1d4..d32a521 100644 --- a/go/03-modules/main.go +++ b/go/03-modules/main.go @@ -5,11 +5,11 @@ import ( // importing the myMath package with an alias mm. This allows us to use mm instead of myMath to access the functions in the package. // go packages are imported using their full path, which is the path to the package relative to the GOPATH or module root. . - mm "gitty.informatik.hs-mannheim.de/steger/pr3-code/go/03-modules/myMath" + mm "gitty.informatik.hs-mannheim.de/steger/pr3-sose2026/go/03-modules/myMath" // the underscore is used to import a package solely for its side effects (i.e., the init function). // This is useful when you want to initialize a package but do not need to access any of its exported functions or variables. - // _ "gitty.informatik.hs-mannheim.de/steger/pr3-code/go/03-modules/myMath" + // _ "gitty.informatik.hs-mannheim.de/steger/pr3-sose2026/go/03-modules/myMath" // importing a third-party package from GitHub. This package provides functions for generating UUIDs (Universally Unique Identifiers). // To use this package, you need to run go get github.com/google/uuid to download and install the package in your Go workspace. diff --git a/go/03-modules/myMath/math_test.go b/go/03-modules/myMath/math_test.go index cf3fe11..303d05e 100644 --- a/go/03-modules/myMath/math_test.go +++ b/go/03-modules/myMath/math_test.go @@ -3,7 +3,7 @@ package myMath_test import ( "testing" - "gitty.informatik.hs-mannheim.de/steger/pr3-code/go/03-modules/myMath" + "gitty.informatik.hs-mannheim.de/steger/pr3-sose2026/go/03-modules/myMath" ) func TestAdd(t *testing.T) {