using System.Threading.Tasks; namespace IRCRobots { public class Bot : IBot { public IServer CreateServer(string name) { throw new System.NotImplementedException(); } public async Task Disconnected(IServer server) { throw new System.NotImplementedException(); } public async Task Disconnect(IServer server) { throw new System.NotImplementedException(); } public async Task AddServer(string name, ConnectionParams connectionParams) { throw new System.NotImplementedException(); } public async Task Run() { throw new System.NotImplementedException(); } } }