set up project structure

This commit is contained in:
Robert 2022-12-09 20:49:54 +01:00
parent 33a8fda1bb
commit 7a41ba87b6
71 changed files with 1293 additions and 91 deletions

9
examples/connect.rs Normal file
View file

@ -0,0 +1,9 @@
use std::error::Error;
use b15f::B15F;
fn main() -> Result<(), Box<dyn Error>>{
let drv = B15F::new()?;
Ok(())
}