summaryrefslogtreecommitdiff
path: root/src/signup.cc
blob: a3eafd420e63f952831cbd8e8c70f34d622c14bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);
}