do stuff (supposedly)

This commit is contained in:
nora 2024-04-12 21:15:24 +02:00
parent f9da7ebe43
commit c4e62f9d2d
12 changed files with 437 additions and 79 deletions

12
src/framework/mod.rs Normal file
View file

@ -0,0 +1,12 @@
#![allow(dead_code)]
pub mod datasource;
pub mod provider;
use self::datasource::DataSource;
pub struct Diagnostics {
pub(crate) errors: Vec<String>,
}
pub type DResult<T> = Result<T, Diagnostics>;