more refactoring and slightly better api

This commit is contained in:
Kay Simmons 2022-11-02 18:09:35 -07:00 committed by Mikayla Maki
parent aa7b909b7b
commit eb0598dac2
7 changed files with 588 additions and 627 deletions

View file

@ -1,7 +1,5 @@
pub mod items;
pub mod kvp;
mod migrations;
pub mod pane;
pub mod workspace;
use std::fs;
@ -11,10 +9,10 @@ use std::path::Path;
use anyhow::Result;
use indoc::indoc;
use kvp::KVP_MIGRATION;
use pane::PANE_MIGRATIONS;
use sqlez::connection::Connection;
use sqlez::thread_safe_connection::ThreadSafeConnection;
use workspace::pane::PANE_MIGRATIONS;
pub use workspace::*;
#[derive(Clone)]