Added listing of API fields

This commit is contained in:
2018-03-28 00:26:06 +02:00
parent 199512dbc9
commit f3b9eff1f4
4 changed files with 91 additions and 0 deletions

8
utils/APIField.go Normal file
View File

@ -0,0 +1,8 @@
package utils
// APIField describes a field in the API.
type APIField struct {
Name string
JSON string
Type string
}