1
1
mirror of https://github.com/vx3r/wg-gen-web.git synced 2024-11-22 02:31:57 +01:00
wg-gen-web/model/auth.go

11 lines
219 B
Go
Raw Normal View History

2020-04-28 13:11:49 +02:00
package model
2020-06-10 09:52:44 +02:00
// Auth structure
2020-04-28 13:11:49 +02:00
type Auth struct {
Oauth2 bool `json:"oauth2"`
ClientId string `json:"clientId"`
Code string `json:"code"`
State string `json:"state"`
CodeUrl string `json:"codeUrl"`
}