mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
15 lines
367 B
C#
15 lines
367 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Wabbajack.Networking.Http.Interfaces;
|
|
|
|
/// <summary>
|
|
/// Interface for services that need a auth token of some sort
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
public interface ITokenProvider<T>
|
|
{
|
|
public ValueTask<T?> Get();
|
|
|
|
public ValueTask SetToken(T val);
|
|
public ValueTask<bool> TryDelete(T val);
|
|
} |