1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 17:06:39 +02:00
Files
anope/modules/core/nickserv.h
T
Adam f858164dee Rewrote how commands are handled within Anope.
This allows naming commands and having spaces within command names.
2011-07-14 02:31:12 -04:00

16 lines
275 B
C++

#ifndef NICKSERV_H
#define NICKSERV_H
class NickServService : public Service
{
public:
NickServService(Module *m) : Service(m, "NickServ") { }
virtual void Validate(User *u) = 0;
};
static service_reference<NickServService> nickserv("NickServ");
#endif // NICKSERV_H