├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── assets ├── favicon.ico └── favicon.png ├── chan.db.example ├── rust-toolchain.toml ├── src ├── api.rs ├── db.rs ├── main.rs ├── structures.rs └── ui.rs └── templates ├── 404.html.hbs ├── boards.html.hbs ├── header.html.hbs ├── index.html.hbs ├── layout.html.hbs └── threads.html.hbs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.idea 3 | chan.db 4 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/README.md -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /chan.db.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/chan.db.example -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | nightly-2023-02-20 2 | -------------------------------------------------------------------------------- /src/api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/src/api.rs -------------------------------------------------------------------------------- /src/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/src/db.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/structures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/src/structures.rs -------------------------------------------------------------------------------- /src/ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/src/ui.rs -------------------------------------------------------------------------------- /templates/404.html.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/templates/404.html.hbs -------------------------------------------------------------------------------- /templates/boards.html.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/templates/boards.html.hbs -------------------------------------------------------------------------------- /templates/header.html.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/templates/header.html.hbs -------------------------------------------------------------------------------- /templates/index.html.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/templates/index.html.hbs -------------------------------------------------------------------------------- /templates/layout.html.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/templates/layout.html.hbs -------------------------------------------------------------------------------- /templates/threads.html.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/chan/HEAD/templates/threads.html.hbs --------------------------------------------------------------------------------