Files
mod_webgate/mod_webgate.c
T
2026-04-28 21:40:33 +02:00

23 lines
372 B
C

/*
SPDX-License-Identifier: AGPL-3.0-or-later
Copyright (C) 2026 mrkubax10 <mrkubax10@onet.pl>
*/
#include <httpd.h>
#include <http_core.h>
#include <stdio.h>
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
};