cafe-plaetschwiesle/scripts/swagger.sh
2023-07-04 23:18:05 +02:00

18 lines
244 B
Bash
Executable file

#!/bin/sh
action=$1
case $action in
"install")
go install github.com/swaggo/swag/cmd/swag@latest
;;
"init")
swag init --dir internal/controller -g ../router/router.go
;;
"format")
swag fmt
;;
*)
exit 0
;;
esac