mirror of
https://github.com/Noratrieb/terustform.git
synced 2026-01-14 16:35:11 +01:00
do stuff (supposedly)
This commit is contained in:
parent
f9da7ebe43
commit
c4e62f9d2d
12 changed files with 437 additions and 79 deletions
12
src/framework/mod.rs
Normal file
12
src/framework/mod.rs
Normal 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>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue