diff options
| author | Joel Klinghed <the_jk@yahoo.com> | 2015-05-28 21:16:26 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@yahoo.com> | 2015-05-28 21:16:26 +0200 |
| commit | b5a0e93f400d75ddef67c21c35878cfafee56e1a (patch) | |
| tree | 73dd35971de66cd1d09d303665bd5a2189396361 /src/signup.cc | |
| parent | 720295848ea0d909cb39c004cbeaf1055fa7cffc (diff) | |
Small start for signup
Diffstat (limited to 'src/signup.cc')
| -rw-r--r-- | src/signup.cc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/signup.cc b/src/signup.cc new file mode 100644 index 0000000..a3eafd4 --- /dev/null +++ b/src/signup.cc @@ -0,0 +1,19 @@ +#include "common.hh" + +#include "cgi.hh" +#include "db.hh" + +using namespace stuff; + +namespace { + +bool handle_request(CGI* cgi) { + + return false; +} + +} // namespace + +int main() { + return CGI::run(handle_request); +} |
