mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
10 lines
277 B
C#
10 lines
277 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NadekoBot.Core.Modules.Music
|
|
{
|
|
public interface ISoundcloudResolver : IPlatformQueryResolver
|
|
{
|
|
bool IsSoundCloudLink(string url);
|
|
IAsyncEnumerable<ITrackInfo> ResolvePlaylistAsync(string playlist);
|
|
}
|
|
} |