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

14 lines
245 B
Rust
Raw Normal View History

2023-06-14 21:49:20 +00:00
mod ui;
mod accounts;
2023-06-14 21:49:20 +00:00
use tokio::time::{sleep, Duration};
2023-06-14 21:49:20 +00:00
#[tokio::main]
async fn main() -> anyhow::Result<()> {
tracing_subscriber::fmt::init();
accounts::account_add("https://nerdcult.net", "test", "abcd1234").await?;
2023-06-14 21:49:20 +00:00
Ok(())
}