(ctx context.Context, visitToken string)
| 121 | } |
| 122 | |
| 123 | func (as *AuthService) RemoveUserVisitCacheInfo(ctx context.Context, visitToken string) (err error) { |
| 124 | if len(visitToken) > 0 { |
| 125 | return as.authRepo.RemoveUserVisitCacheInfo(ctx, visitToken) |
| 126 | } |
| 127 | return nil |
| 128 | } |
| 129 | |
| 130 | // AddUserTokenMapping add user token mapping |
| 131 | func (as *AuthService) AddUserTokenMapping(ctx context.Context, userID, accessToken string) (err error) { |
nothing calls this directly
no test coverage detected