Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

mod.rs
use rocket::Route;

mod pijul;
pub mod projects;
mod root;
mod users;

pub fn routes() -> Vec<Route> {
    [
        root::routes(),
        pijul::routes(),
        projects::routes(),
        users::routes(),
    ]
    .concat()
}