This commit is contained in:
Florian Hoss 2023-07-04 11:51:13 +02:00
commit f90fdc0598
99 changed files with 15260 additions and 0 deletions

15
scripts/swagger.sh Executable file
View file

@ -0,0 +1,15 @@
#!/bin/sh
action=$1
case $action in
"install")
go install github.com/swaggo/swag/cmd/swag@latest
;;
"init")
swag init -g api/swagger.go
;;
*)
exit 0
;;
esac