Files
Akari.Prototype/Akari.Prototype.Server/Services/AuthManager.cs
2021-06-03 20:19:42 +02:00

26 lines
587 B
C#

using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Akari.Prototype.Server.Services
{
public class AuthManager : IAuthManager
{
private readonly ILogger<AuthManager> _logger;
private readonly IKeyManager _keyManager;
public AuthManager(ILogger<AuthManager> logger, IKeyManager keyManager)
{
_logger = logger;
_keyManager = keyManager;
}
public void Auth(byte[] token, string name)
{
}
}
}