add: base project files

This commit is contained in:
lily 2025-03-28 01:33:23 -04:00
commit 74faf8fcc9
Signed by: lily
GPG key ID: 601F3263FBCBC4B9
9 changed files with 174 additions and 0 deletions

1
consumer/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

7
consumer/Cargo.toml Normal file
View file

@ -0,0 +1,7 @@
[package]
name = "consumer"
version = "0.1.0"
edition = "2024"
[dependencies]
kosmora = { path = "../kosmora" }

9
consumer/src/main.rs Normal file
View file

@ -0,0 +1,9 @@
use kosmora::{self, KosmoraINodeInteroperable};
use std::path::Path;
fn main() {
let vfs = kosmora::KosmoraVfs::new();
let example_path: &Path = &std::path::Path::new(".");
example_path.to_kosmora_inode();
}