mirror of
https://github.com/cadmium-im/zirconium-go.git
synced 2024-11-23 19:02:20 +00:00
12 lines
231 B
Go
12 lines
231 B
Go
|
package auth
|
||
|
|
||
|
type AuthRequest struct {
|
||
|
Type string `json:"type"`
|
||
|
Fields map[string]interface{} `json:"fields"`
|
||
|
}
|
||
|
|
||
|
type AuthResponse struct {
|
||
|
Token string `json:"token"`
|
||
|
DeviceID string `json:"deviceID"`
|
||
|
}
|