serviceAuthToken implements AuthToken for tokens belonging to a service.
| 76 | |
| 77 | // serviceAuthToken implements AuthToken for tokens belonging to a service. |
| 78 | type serviceAuthToken struct { |
| 79 | model *database.ServiceAuthToken |
| 80 | token *authtoken.Token |
| 81 | } |
| 82 | |
| 83 | func (t *serviceAuthToken) Token() *authtoken.Token { |
| 84 | return t.token |
nothing calls this directly
no outgoing calls
no test coverage detected