mirror of
https://github.com/anope/anope.git
synced 2026-07-07 14:23:13 +02:00
5007b72b28
find include/ src/ lang/ docs/ modules/ *.* Config -exec sed -i 's/-2012 Anope Team/-2013 Anope Team/i' {} \;
23 lines
394 B
C++
23 lines
394 B
C++
/*
|
|
* (C) 2003-2013 Anope Team
|
|
* Contact us at team@anope.org
|
|
*
|
|
* Please read COPYING and README for further details.
|
|
*/
|
|
|
|
#include "../../httpd.h"
|
|
|
|
namespace WebCPanel
|
|
{
|
|
|
|
class Index : public WebPanelPage
|
|
{
|
|
public:
|
|
Index(const Anope::string &u) : WebPanelPage(u) { }
|
|
|
|
bool OnRequest(HTTPProvider *, const Anope::string &, HTTPClient *, HTTPMessage &, HTTPReply &) anope_override;
|
|
};
|
|
|
|
}
|
|
|