Files
go-tunnel/control/auth.go
2020-10-21 18:00:15 +02:00

10 lines
150 B
Go

package control
type AuthRequestPayload struct {
Credentials interface{} `json:"c"`
}
type AuthResponsePayload struct {
Success bool `json:"s"`
}