Extend the app state

This commit is contained in:
Lennart
2023-09-05 17:00:32 +02:00
parent a87425f632
commit 6b6788ec98
8 changed files with 94 additions and 23 deletions

8
crates/davfs/Cargo.toml Normal file
View File

@@ -0,0 +1,8 @@
[package]
name = "davfs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
crates/davfs/src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}