odyssey/core/odissey.c

30 lines
470 B
C
Raw Normal View History

/*
2016-11-08 11:18:58 +00:00
* odissey.
*
* PostgreSQL connection pooler and request router.
*/
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
2016-11-07 10:07:23 +00:00
#include "od_macro.h"
#include "od_list.h"
2016-11-07 11:29:49 +00:00
#include "od_log.h"
#include "od_scheme.h"
#include "od_lex.h"
2016-11-07 11:29:49 +00:00
#include "od_config.h"
2016-11-09 11:30:06 +00:00
#include "od_server.h"
#include "od_pool.h"
#include "od.h"
2016-11-07 10:07:23 +00:00
int main(int argc, char *argv[])
{
od_t odissey;
od_init(&odissey);
int rc = od_main(&odissey, argc, argv);
od_free(&odissey);
return rc;
}