Add FingerprintManager
This commit is contained in:
25
Akari.Prototype.Server/Services/AuthManager.cs
Normal file
25
Akari.Prototype.Server/Services/AuthManager.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user