From dd97107aa81e1137c80602c044b3805bf4ffda56 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Tue, 6 Jan 2026 11:12:50 +0100 Subject: Switch to using modules in the library --- cli/main.cpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'cli/main.cpp') diff --git a/cli/main.cpp b/cli/main.cpp index d0bf8b7..5502800 100644 --- a/cli/main.cpp +++ b/cli/main.cpp @@ -3,17 +3,20 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ +module; + #include +#include #include #include #include #include -#include "katja/sbo.hpp" -#include "katja/database.hpp" - -import page; +import katja.database; +import katja.repository; +import katja.sbo; +import katja.page; int main(int argc, const char **argv) { -- cgit v1.2.3