Files
SimpleHttpServer/app/main.h

15 lines
288 B
C

//
// Created by nazar on 12.09.2025.
//
#ifndef SIMPLEHTTPSERVER_MAIN_H
#define SIMPLEHTTPSERVER_MAIN_H
#include "../src/httpserver.h"
#define ADDRESS "127.0.0.1"
#define PORT 8080
http_response_t* handle_request(http_request_t* request);
int main();
#endif //SIMPLEHTTPSERVER_MAIN_H