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

25 lines
337 B

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