feat: add setup token

This commit is contained in:
2024-05-28 06:56:25 +03:00
parent 36a78a8284
commit 0e9bb04b96
3 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,9 @@
using System;
namespace Mirea.Api.Endpoint.Common.Interfaces;
public interface ISetupToken
{
bool MatchToken(ReadOnlySpan<byte> token);
void SetToken(ReadOnlySpan<byte> token);
}