13 lines
241 B
Go
13 lines
241 B
Go
|
package server
|
||
|
|
||
|
type ResponseIndex struct {
|
||
|
Name string `json:"name"`
|
||
|
Version string `json:"version"`
|
||
|
GoVersion string `json:"go_version"`
|
||
|
Commit string `json:"commit"`
|
||
|
}
|
||
|
|
||
|
type ResponseAPIPost struct {
|
||
|
ID string `json:"id"`
|
||
|
}
|