mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
10 lines
234 B
C#
10 lines
234 B
C#
#nullable enable
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NadekoBot.Core.Modules.Music
|
|
{
|
|
public interface ITrackResolveProvider
|
|
{
|
|
Task<ITrackInfo?> QuerySongAsync(string query, MusicPlatform? forcePlatform);
|
|
}
|
|
} |