diff options
| author | soler_j <soler_j@etna-alternance.net> | 2025-05-04 03:40:38 +0200 | 
|---|---|---|
| committer | soler_j <soler_j@etna-alternance.net> | 2025-05-04 03:40:38 +0200 | 
| commit | c981f4e36780c583556c03fc56fe43c0830f982e (patch) | |
| tree | 7b70fa3cbac360ce8d439dd3ae4c3600603369b9 /app/go.mod | |
| parent | 169e01b53d105cee6a9d32a466e1ec23fe150a5b (diff) | |
Ajout de la gestion des variables d'environnement pour la connexion à la base de données et mise à jour des fichiers de configuration pour inclure .env et .envrc.
Diffstat (limited to 'app/go.mod')
| -rw-r--r-- | app/go.mod | 15 | 
1 files changed, 14 insertions, 1 deletions
@@ -2,4 +2,17 @@ module github.com/ketsuna-org/bot-creator-api  go 1.23.3 -require github.com/arangodb/go-driver/v2 v2.1.3 // indirect +require ( +	github.com/arangodb/go-driver/v2 v2.1.3 // indirect +	github.com/arangodb/go-velocypack v0.0.0-20200318135517-5af53c29c67e // indirect +	github.com/dchest/siphash v1.2.3 // indirect +	github.com/google/uuid v1.6.0 // indirect +	github.com/kkdai/maglev v0.2.0 // indirect +	github.com/mattn/go-colorable v0.1.13 // indirect +	github.com/mattn/go-isatty v0.0.20 // indirect +	github.com/pkg/errors v0.9.1 // indirect +	github.com/rs/zerolog v1.33.0 // indirect +	golang.org/x/net v0.33.0 // indirect +	golang.org/x/sys v0.28.0 // indirect +	golang.org/x/text v0.21.0 // indirect +)  | 
