8 lines
158 B
Go
8 lines
158 B
Go
|
package arn
|
||
|
|
||
|
// EmailToUser stores the user ID for an email address.
|
||
|
type EmailToUser struct {
|
||
|
Email string `json:"email"`
|
||
|
UserID UserID `json:"userId"`
|
||
|
}
|