finnow/finnow-api/source/app.d

11 lines
196 B
D
Raw Normal View History

2024-07-24 20:32:08 +00:00
import handy_httpd;
import api_mapping;
2024-07-24 20:32:08 +00:00
void main() {
ServerConfig cfg;
cfg.workerPoolSize = 5;
cfg.port = 8080;
HttpServer server = new HttpServer(mapApiHandlers(), cfg);
server.start();
}