| 12345678910111213141516171819202122232425 |
- //using IdentityProvider.Protos.AuthService;
- using GrpcShared.DTO.Auth;
- using IdentityProvider.Services.Interfaces;
-
- namespace IdentityProvider.Services
- {
- public class AuthService :IAuthService
- {
- private readonly ILogger<AuthService> _logger;
- public AuthService(ILogger<AuthService> logger)
- {
- _logger = logger;
- }
-
- public Task<AuthResponse> GetAccessToken(CodeResponse code)
- {
- throw new NotImplementedException();
- }
-
- public Task<CodeResponse> GetCode(AuthRequest request)
- {
- throw new NotImplementedException();
- }
- }
- }
|