Files
homeAutomation/smappee-api/interfaces/IBearerTokenService.cs
2026-08-21 07:38:21 +02:00

6 lines
115 B
C#

namespace interfaces;
internal interface IBearerTokenService {
ValueTask<string> GetToken(bool forceNewToken);
}