| 16 | ) |
| 17 | |
| 18 | type APIToken struct { |
| 19 | Token string `json:"token" bson:"apikey"` |
| 20 | UserEmail string `json:"email" bson:"email"` |
| 21 | } |
| 22 | |
| 23 | func (t *APIToken) GetValue() string { |
| 24 | return t.Token |
nothing calls this directly
no outgoing calls
no test coverage detected