refactor!: renommer module et réorganiser fichiers

BREAKING: Rapporter fichiers `pkg/*.go` à la racine
BREAKING: Bump version du module à `git.agecem.com/agecem/babillard/v8` et ajuster
les références
This commit is contained in:
Victor Lacasse-Beaudoin 2025-03-27 17:32:04 -04:00
parent 0d8f880023
commit 217b17d436
10 changed files with 3 additions and 3 deletions

View file

@ -24,7 +24,7 @@ package main
import (
"log"
"git.agecem.com/agecem/babillard/v7/pkg/babillard"
"git.agecem.com/agecem/babillard/v8"
)
func main() {

2
go.mod
View file

@ -1,4 +1,4 @@
module git.agecem.com/agecem/babillard/v7
module git.agecem.com/agecem/babillard/v8
go 1.23

View file

@ -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"
)