oglens 0.1.1

Tools for viewing OGP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use anyhow::Result;
use clap::Parser;

use crate::app::App;

mod app;

#[tokio::main]
async fn main() -> Result<()> {
    let app = App::parse();
    app.run().await
}