(ctx context.Context, accessToken string)
| 117 | } |
| 118 | |
| 119 | func (as *AuthService) RemoveUserCacheInfo(ctx context.Context, accessToken string) (err error) { |
| 120 | return as.authRepo.RemoveUserCacheInfo(ctx, accessToken) |
| 121 | } |
| 122 | |
| 123 | func (as *AuthService) RemoveUserVisitCacheInfo(ctx context.Context, visitToken string) (err error) { |
| 124 | if len(visitToken) > 0 { |
nothing calls this directly
no test coverage detected