cleanup api3 structure
This commit is contained in:
21
src/api3/config/datastore.rs
Normal file
21
src/api3/config/datastore.rs
Normal file
@ -0,0 +1,21 @@
|
||||
use failure::*;
|
||||
use std::collections::HashMap;
|
||||
|
||||
use crate::api::schema::*;
|
||||
use crate::api::router::*;
|
||||
use serde_json::{json, Value};
|
||||
|
||||
fn datastore_list(param: Value, _info: &ApiMethod) -> Result<Value, Error> {
|
||||
println!("This is a test {}", param);
|
||||
Ok(json!({}))
|
||||
}
|
||||
|
||||
pub fn router() -> Router {
|
||||
|
||||
let route = Router::new()
|
||||
.get(ApiMethod::new(
|
||||
datastore_list,
|
||||
ObjectSchema::new("Directory index.")));
|
||||
|
||||
route
|
||||
}
|
Reference in New Issue
Block a user