feat: add basic gitea client setup

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-08-21 21:48:59 +02:00
commit e035b98fab
7 changed files with 458 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
[package]
name = "gitea-rs"
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()
}
}