8 lines
154 B
Go
8 lines
154 B
Go
package arn
|
|
|
|
// GoogleToUser stores the user ID by Google user ID.
|
|
type GoogleToUser struct {
|
|
ID string `json:"id"`
|
|
UserID UserID `json:"userId"`
|
|
}
|