Added initial git and storage engine

This commit is contained in:
2022-10-25 22:00:46 +02:00
parent 1be156d911
commit dce155979e
16 changed files with 931 additions and 12 deletions

View File

@@ -1,3 +1,5 @@
fn main() {
println!("Hello, world!");
#[tokio::main]
async fn main() -> eyre::Result<()> {
let cli = octopush_cli::OctopushCli::new();
cli.execute().await
}