feat: add basic gitea client setup
Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
9
crates/gitea-rs/Cargo.toml
Normal file
9
crates/gitea-rs/Cargo.toml
Normal 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
|
5
crates/gitea-rs/src/lib.rs
Normal file
5
crates/gitea-rs/src/lib.rs
Normal file
@@ -0,0 +1,5 @@
|
||||
pub mod something {
|
||||
pub fn something() -> String {
|
||||
"hello, world!".to_string()
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user