httpd/httpd/src/main.c
2025-11-18 20:25:46 +01:00

10 lines
155 B
C

#include <getopt.h>
#include <stdio.h>
#include "config/config.h"
int main(int argc, char **argv)
{
parse_configuration(argc, argv);
return 0;
}