diff --git a/pkg/babillard/cmd.go b/cmd.go similarity index 100% rename from pkg/babillard/cmd.go rename to cmd.go diff --git a/cmd/babillard/main.go b/cmd/babillard/main.go index a8195a2..879050d 100644 --- a/cmd/babillard/main.go +++ b/cmd/babillard/main.go @@ -24,7 +24,7 @@ package main import ( "log" - "git.agecem.com/agecem/babillard/v7/pkg/babillard" + "git.agecem.com/agecem/babillard/v8" ) func main() { diff --git a/pkg/babillard/config.go b/config.go similarity index 100% rename from pkg/babillard/config.go rename to config.go diff --git a/pkg/babillard/contenu.go b/contenu.go similarity index 100% rename from pkg/babillard/contenu.go rename to contenu.go diff --git a/pkg/babillard/data.go b/data.go similarity index 100% rename from pkg/babillard/data.go rename to data.go diff --git a/go.mod b/go.mod index 1af488a..7ce7acc 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module git.agecem.com/agecem/babillard/v7 +module git.agecem.com/agecem/babillard/v8 go 1.23 diff --git a/pkg/babillard/handlers.go b/handlers.go similarity index 97% rename from pkg/babillard/handlers.go rename to handlers.go index 73bd856..f15bf78 100644 --- a/pkg/babillard/handlers.go +++ b/handlers.go @@ -5,7 +5,7 @@ import ( "log" "net/http" - "git.agecem.com/agecem/babillard/v7/ui" + "git.agecem.com/agecem/babillard/v8/ui" "github.com/labstack/echo/v4" "github.com/labstack/echo/v4/middleware" ) diff --git a/kubernetes/deployment.yaml b/k8s/deployment.yaml similarity index 100% rename from kubernetes/deployment.yaml rename to k8s/deployment.yaml diff --git a/kubernetes/service.yaml b/k8s/service.yaml similarity index 100% rename from kubernetes/service.yaml rename to k8s/service.yaml diff --git a/pkg/babillard/response.go b/response.go similarity index 100% rename from pkg/babillard/response.go rename to response.go