ibis/src/main.rs

9 lines
155 B
Rust
Raw Normal View History

2023-11-15 12:05:07 +00:00
use fediwiki::error::MyResult;
use fediwiki::start;
#[tokio::main]
2023-11-15 12:05:07 +00:00
pub async fn main() -> MyResult<()> {
start("localhost:8131").await?;
Ok(())
2023-11-14 22:41:58 +00:00
}