26 lines
587 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|