using System.Threading;
using System.Threading.Tasks;
namespace UtopiaCanteenSystem.Services;
public interface IAuthService
{
Task<AuthResult> LoginAsync(string username, string password, CancellationToken cancellationToken = default);
}