1
1
Fork 0
mirror of https://github.com/vx3r/wg-gen-web.git synced 2024-05-06 22:56:03 +02:00
wg-gen-web/model/auth.go
2020-06-10 16:52:44 +09:00

11 lines
219 B
Go

package model
// Auth structure
type Auth struct {
Oauth2 bool `json:"oauth2"`
ClientId string `json:"clientId"`
Code string `json:"code"`
State string `json:"state"`
CodeUrl string `json:"codeUrl"`
}