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

31 lines
418 B

#![cfg_attr(nightly, feature(option_unwrap_none))]
#![cfg_attr(nightly, feature(never_type))]
#![allow(dead_code)]
#![cfg_attr(nightly, feature(test))]
#[cfg(all(nightly, test))] extern crate test;
use async_trait::async_trait;
use serde::{
Serialize, Deserialize,
};
mod ext;
use ext::*;
mod bytes;
mod suspend;
mod cache;
mod config;
mod tripcode;
mod identity;
mod post;
mod state;
fn main() {
}