1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use ndata::dataobject::*;
use crate::datastore::*;

pub fn execute(_o: DataObject) -> DataObject {
let ax = root();
let mut o = DataObject::new();
o.put_str("a", &ax);
o
}

pub fn root() -> String {
let store = DataStore::new();
store.root.canonicalize().unwrap().to_str().unwrap().to_string()

}