diff --git a/yopa-web/src/main.rs b/yopa-web/src/main.rs index 733f9fa..7da00df 100644 --- a/yopa-web/src/main.rs +++ b/yopa-web/src/main.rs @@ -167,6 +167,8 @@ async fn main() -> std::io::Result<()> { fn init_yopa() -> YopaStoreWrapper { let mut store = Storage::new(); + /* + // Seed the store with some dummy data for view development use yopa::model; use yopa::DataType; @@ -288,6 +290,7 @@ fn init_yopa() -> YopaStoreWrapper { }], }) .unwrap(); + */ web::Data::new(tokio::sync::RwLock::new(store)) }