package model type User struct { Id string FullName string Nickname string AuthSources map[string]AuthSource } type AuthSource struct { Provider string AuthToken string }