From 7539234fcb8f6af57d4aba012b874ef18b229bdf Mon Sep 17 00:00:00 2001 From: "Frederic G. MARAND" Date: Sat, 15 Oct 2022 17:58:19 +0200 Subject: [PATCH] Fix module domain after move to Github. --- README.md | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 90fabfe..8811a7b 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ explicit, process, without reflection or code generation, to keep everything in | Step | Code examples | |:-------------------------------|-----------------------------------------| -| Import the package | `import "code.osinet.fr/fgm/izidic"` | +| Import the package | `import "github.com/fgm/izidic"` | | Initialize a container | `dic := izidic.New()` | | Store parameters in the DIC | `dic.Store("executable", os.Args[0])` | | Register services with the DIC | `dic.Register("logger", loggerService)` | @@ -92,7 +92,7 @@ import ( "io" "log" - "code.osinet.fr/fgm/izidic" + "github.com/fgm/izidic" ) type container struct { diff --git a/go.mod b/go.mod index fb58021..f5c0880 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module code.osinet.fr/fgm/izidic +module github.com/fgm/izidic go 1.19