chroot-deploy 0.1.2

A program able to deploy and work with a chroot environment in a quick manner.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2023 Daniel Mueller <deso@posteo.net>
// SPDX-License-Identifier: GPL-3.0-or-later

use std::env::args_os;

use anyhow::Result;

use chroot_deploy::run;


#[tokio::main(flavor = "current_thread")]
async fn main() -> Result<()> {
  run(args_os()).await
}