1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 17:14:08 +02:00
This commit is contained in:
Robin Appelman 2021-03-13 20:32:36 +01:00
commit 2ca635603b
3 changed files with 77 additions and 53 deletions

View file

@ -9,6 +9,7 @@ mod cloud;
mod config;
mod database;
mod php;
mod tty;
#[tokio::main]
async fn main() -> Result<()> {
@ -93,7 +94,12 @@ async fn main() -> Result<()> {
options.insert(0, "occ".to_string());
cloud.exec(&mut docker, options).await?;
}
_ => todo!(),
HazeCommand::Db => {
todo!();
}
HazeCommand::Test => {
todo!();
}
};
Ok(())