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