mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-10-31 22:40:01 +00:00
58dddd86e0
* start experimenting with swagger documentation * further adventures in swagger * do a few more api paths * account paths documented * go fmt * fix up some models * bit o lintin'
8 lines
193 B
Bash
Executable file
8 lines
193 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SWAGGER_FILE="docs/api/swagger.yaml"
|
|
GTS_VERSION="$(cat version)"
|
|
|
|
swagger generate spec -o "${SWAGGER_FILE}" --scan-models
|
|
sed -i "s/REPLACE_ME/${GTS_VERSION}/" "${SWAGGER_FILE}"
|