10 lines
150 B
Go
10 lines
150 B
Go
|
package control
|
||
|
|
||
|
type AuthRequestPayload struct {
|
||
|
Credentials interface{} `json:"c"`
|
||
|
}
|
||
|
|
||
|
type AuthResponsePayload struct {
|
||
|
Success bool `json:"s"`
|
||
|
}
|