/* SPDX-License-Identifier: AGPL-3.0-or-later Copyright (C) 2026 mrkubax10 */ #include #include #include static void register_hooks(apr_pool_t* pool) { printf("Registering hooks\n"); } module AP_MODULE_DECLARE_DATA webgate_module = { STANDARD20_MODULE_STUFF, NULL, NULL, NULL, NULL, NULL, register_hooks };