Initial commit

This commit is contained in:
2023-07-22 13:16:03 +02:00
commit 92ee82fc0e
7 changed files with 60 additions and 0 deletions

13
hooks/post_gen_project.py Normal file
View File

@ -0,0 +1,13 @@
import subprocess
GO_PACKAGES = [
"github.com/gofiber/fiber/v2"
]
def main() -> int:
for package in GO_PACKAGES:
subprocess.run(["go", "get", "-u", package])
return 0
if __name__ == "__main__":
raise SystemExit(main())