You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yuurei/src/main.rs

20 lines
281 B

#![cfg_attr(nightly, feature(option_unwrap_none))]
#![cfg_attr(nightly, feature(never_type))]
#![allow(dead_code)]
use async_trait::async_trait;
mod bytes;
mod suspend;
mod config;
mod tripcode;
mod identity;
mod post;
mod state;
fn main() {
println!("Hello, world!");
}