This repository has been archived on 2024-06-08. You can view files and clone it, but cannot push or open issues or pull requests.
powd/src/main.rs

22 lines
380 B
Rust

// SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
mod avg;
mod cli;
mod db;
mod diff;
mod gen;
mod migrate_pg;
mod print;
mod utils;
pub(crate) use gen::Log;
#[tokio::main]
async fn main() {
std::env::set_var("RUST_LOG", "INFO");
pretty_env_logger::init();
cli::PoWdCli::run().await;
}