9 lines
121 B
Go
9 lines
121 B
Go
package utils
|
|
|
|
// APIField describes a field in the API.
|
|
type APIField struct {
|
|
Name string
|
|
JSON string
|
|
Type string
|
|
}
|