(ctx context.Context, userInfo *entity.UserCacheInfo)
| 113 | } |
| 114 | |
| 115 | func (as *AuthService) SetUserStatus(ctx context.Context, userInfo *entity.UserCacheInfo) (err error) { |
| 116 | return as.authRepo.SetUserStatus(ctx, userInfo.UserID, userInfo) |
| 117 | } |
| 118 | |
| 119 | func (as *AuthService) RemoveUserCacheInfo(ctx context.Context, accessToken string) (err error) { |
| 120 | return as.authRepo.RemoveUserCacheInfo(ctx, accessToken) |
nothing calls this directly
no test coverage detected