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-11 22:39:43 +01:00
commit afb7d0ae6f
6 changed files with 1590 additions and 3 deletions

View file

@ -1,3 +1,15 @@
use crate::config::HazeConfig;
use camino::Utf8Path;
use color_eyre::{eyre::WrapErr, Report, Result};
use std::fs::create_dir_all;
mod cloud;
mod config;
mod docker;
fn main() {
println!("Hello, world!");
let config = HazeConfig {
sources_root: "/srv/http/owncloud".into(),
work_dir: "/tmp/oc-docket".into(),
};
}