tewi/Module/mod_example.c
Nishi 3da7713d32 can return response now
git-svn-id: file:///raid/svn-personal/tewi/trunk@18 8739d7e6-ffea-ec47-b151-bdff447c6205
2024-09-14 00:42:40 +00:00

10 lines
212 B
C

/* $Id$ */
#include "../Server/tw_module.h"
int mod_init(struct tw_config* config, struct tw_tool* tools) {
tools->log("Example", "This is an example module");
tools->add_version("Example/0.0");
return 0;
}