This project uses Swago to automatically generate API documentation from annotations in Go code.
To generate the API documentation, run the following command:
swag init --parseDependency --parseInternal --generalInfo ./cmd/main.go
This command tells Swag to parse all dependencies and internal packages, and to use ./cmd/main.go as the general information file.
After running this command, Swag will generate a docs directory with the API documentation.
Running the Development Server
To run the development server, use the make watch command:
This command will start the development server and automatically reload it whenever you make changes to the code.