logup 0.1.0

Logup is a UNIX-style command that can be used to pipe stdout logs to location on disk or in the cloud without the need of an agent, logrotate, systemd or other configuration files
Documentation
1
2
3
4
5
6
7
8
9
use clap::Parser;
use logup::OutlogArgs;

// Single-thread on purpose to consume the least amount of resources.
#[tokio::main(flavor = "current_thread")]
async fn main() {
    let cli = OutlogArgs::parse();
    logup::run(cli).await;
}