1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 10:26:37 +02:00
Files
anope/modules/core/chanserv.h
T

16 lines
267 B
C++

#ifndef CHANSERV_H
#define CHANSERV_H
class ChanServService : public Service
{
public:
ChanServService(Module *m) : Service(m, "ChanServ") { }
virtual BotInfo *Bot() = 0;
};
static service_reference<ChanServService> chanserv("ChanServ");
#endif // CHANSERV_H