go-tunnel/control/auth.go

10 lines
150 B
Go
Raw Normal View History

2020-10-21 18:00:15 +02:00
package control
type AuthRequestPayload struct {
Credentials interface{} `json:"c"`
}
type AuthResponsePayload struct {
Success bool `json:"s"`
}