#nullable disable using NadekoBot.Common.Pokemon; using NadekoBot.Modules.Games.Common.Trivia; namespace NadekoBot.Services; public interface ILocalDataCache { Task> GetPokemonsAsync(); Task> GetPokemonAbilitiesAsync(); Task GetTriviaQuestionsAsync(); Task> GetPokemonMapAsync(); }