2019-01-23 12:05:32 +00:00
|
|
|
use failure::*;
|
|
|
|
|
2019-01-30 17:25:37 +00:00
|
|
|
//use crate::tools;
|
2019-02-17 09:16:33 +00:00
|
|
|
use crate::api_schema::*;
|
2019-02-17 08:59:20 +00:00
|
|
|
use crate::api_schema::router::*;
|
2019-01-23 12:05:32 +00:00
|
|
|
use serde_json::{json, Value};
|
|
|
|
|
|
|
|
|
2019-01-26 13:50:37 +00:00
|
|
|
fn get_network_config(
|
|
|
|
_param: Value,
|
|
|
|
_info: &ApiMethod,
|
|
|
|
_rpcenv: &mut RpcEnvironment,
|
|
|
|
) -> Result<Value, Error> {
|
2019-01-23 12:05:32 +00:00
|
|
|
|
|
|
|
Ok(json!({}))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn router() -> Router {
|
|
|
|
|
|
|
|
let route = Router::new()
|
|
|
|
.get(ApiMethod::new(
|
|
|
|
get_network_config,
|
|
|
|
ObjectSchema::new("Read network configuration.")));
|
|
|
|
|
|
|
|
route
|
|
|
|
}
|