Tracking and documenting an API endpoints can be an hard task, especially when it start growing. This Go package aims to create an initial structure for documenting an API using Slate (.md format).
This package is supposed to work along with another script I built:
- The
bashscript reads from the project modules, outputting a file with a list of routes and related middlewares; - This
Gopackage, reads from the previous output file and generates a documentation skeleton for the provided API routes.
Considering each middleware may have different structure and arguments, we need to especially handle one by one. To do so, we just need to had the name of the middleware to the switch case in storage/write_date and add the desired template for it in storage/templates.
Here is the list of the middlewares names already being handled:
includesortfilterpaginateauthorization
GET /countries/:id authorization
GET /countries authorization sort filter include
POST /countriesgo run main.go inputFilename [outputFilename]inputFilename:File containing the list of endpoints, one per lineouputFilename:Name of the result file. If one is not provided, the result filename is the current directory.
