mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-03 17:14:08 +02:00
wip
This commit is contained in:
parent
949fb47cac
commit
afb7d0ae6f
6 changed files with 1590 additions and 3 deletions
14
src/main.rs
14
src/main.rs
|
|
@ -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(),
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue