feat: add cuddle lib

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-08-01 21:50:26 +02:00
parent b64a6132c2
commit 7688d45cc1
12 changed files with 1025 additions and 16 deletions

View File

@@ -0,0 +1,9 @@
[package]
name = "%%name%%"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow.workspace = true
tokio.workspace = true
tracing.workspace = true

View File

@@ -0,0 +1,5 @@
pub mod something {
pub fn something() -> String {
"hello, world!".to_string()
}
}