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/user.go
2020-06-10 16:52:44 +09:00

14 lines
282 B
Go

package model
import "time"
// User structure
type User struct {
Sub string `json:"sub"`
Name string `json:"name"`
Email string `json:"email"`
Profile string `json:"profile"`
Issuer string `json:"issuer"`
IssuedAt time.Time `json:"issuedAt"`
}