summaryrefslogtreecommitdiff
path: root/src/webstat_logger_main.cpp
blob: 8f2d45a61e1dc7459bf0d4bb4deffb043d6dce72 (plain)
1
2
3
4
5
6
7
8
9
#include "ingestor.hpp"
#include <pq-connection.h>

int
main(int, char **)
{
	auto dbconn = std::make_shared<PQ::Connection>("dbname=webstat user=webstat");
	WebStat::Ingestor {dbconn}.ingestLog(stdin);
}