8 lines
158 B
Go
Raw Normal View History

2019-06-03 09:32:43 +00:00
package arn
// EmailToUser stores the user ID for an email address.
type EmailToUser struct {
Email string `json:"email"`
UserID UserID `json:"userId"`
}