using System.Threading; using System.Threading.Tasks; using Google.Apis.Auth.OAuth2; namespace Slopper.Infrastructure.YouTube; public interface IYouTubeCredentialsProvider { Task<ICredential> GetCredentials(CancellationToken cancellationToken); }