using Chatbot.Api.Domain.Entities;
using System.Threading.Tasks;
namespace Chatbot.Api.Domain.Repositories
{
public interface IBotRepository
Task<Bot[]> GetBots();
}