phlow-server 2.0.1

Provides Phlow HTTP/REST API to inspect running systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![feature(min_specialization)]

#[macro_use]
extern crate phlow;

use phlow_extensions::CoreExtensions;

import_extensions!(CoreExtensions);

fn main() {
    phlow_server::serve(phlow!("Hello".to_string()))
        .join()
        .expect("Failed to spawn phlow server");
}