thingd-core 0.1.0

Core primitives for thingd, an object-shaped local memory engine for apps and agents.
Documentation
1
2
3
4
5
6
7
use thingd_core::SqliteThingStore;

fn main() {
    println!("Opening db...");
    let store = SqliteThingStore::open("/Users/sayanmohsin/Downloads/data.db").unwrap();
    println!("Opened.");
}