initialize go mod
All checks were successful
Update Child Repos / update (push) Successful in 10s

This commit is contained in:
2026-02-16 20:13:14 +01:00
parent e57a88bfdd
commit 02db176da9

View File

@@ -9,3 +9,8 @@ fi
if [ ! -f "config.yaml" ]; then if [ ! -f "config.yaml" ]; then
cp config.yaml.example config.yaml cp config.yaml.example config.yaml
fi fi
if [ ! -f "go.mod" ]; then
module_name=$(git remote get-url origin | sed 's|^https://||')
go mod init "$module_name"
fi