reeplace cerberos by thalos

This commit is contained in:
Sergio Matias Urquin
2025-05-18 18:46:31 -06:00
parent 5b3cd5589d
commit 4fdd80db55
40 changed files with 85 additions and 85 deletions

View File

@@ -0,0 +1,19 @@
// ***********************************************************************
// <copyright file="ITokenProvider.cs">
// AgileWebs
// </copyright>
// ***********************************************************************
namespace Core.Thalos.Adapters.Contracts
{
/// <summary>
/// Interface for token provider.
/// </summary>
public interface ITokenProvider
{
/// <summary>
/// Get token from headers.
/// </summary>
string GetToken();
}
}