XRPLF / clio

An XRP Ledger API Server
https://xrpl.org
ISC License
61 stars 52 forks source link

Refactor web server #919

Open kuznetsss opened 11 months ago

kuznetsss commented 11 months ago

It would be nice to hide all the implementation of the web server into a library and make usage simple. Usage should be like:

Server server(ip, port);
server.onGet("/", getCallback);
serveer.onPost("/", postCallback);
server.run();
kuznetsss commented 1 month ago

This is needed for #442 so moving it to the 2.3 milestone.