From d3117520013d7ee0268e73cf8aaf3fb02e631a42 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 23 Aug 2025 15:49:48 +0100 Subject: Pass a DB connection to Ingestor --- src/ingestor.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/ingestor.cpp') diff --git a/src/ingestor.cpp b/src/ingestor.cpp index 17310c2..d5dd4e2 100644 --- a/src/ingestor.cpp +++ b/src/ingestor.cpp @@ -38,6 +38,8 @@ namespace WebStat { } } + Ingestor::Ingestor(DB::ConnectionPtr dbconn) : dbconn {std::move(dbconn)} { } + Ingestor::ScanResult Ingestor::scanLogLine(std::string_view input) { -- cgit v1.2.3