# Install Swaggo
go install github.com/swaggo/swag/cmd/swag@latest
# Generate Docs
swag init --parseDependency --parseInternal
# or
make docs
Migration
# migrate
go run main.go migrate -e up
# or
make migrate
# Others
go run main.go migrate -e up 0001
go run main.go migrate -e down
go run main.go migrate -e down 0001
go run main.go migrate -e undo
# makemigrations
go run main.go makemigrations -f "create_new_migration_file"
# or
make makemigrations name="create_new_migration_file"