comment_app_backend 0.1.0

Serves comments through Restful APIs
Documentation
1
2
3
4
5
6
7
use comment_app_backend::log;
use comment_app_backend::comment_server;

fn main() {
    log::initialize();
    let _result = comment_server::start();
}