Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

root.rs
use rocket::form::Context;
use rocket::Route;
use rocket_dyn_templates::Template;

#[get("/", rank = 2)]
fn landing() -> Template {
    Template::render("landing", &Context::default())
}

pub fn routes() -> Vec<Route> {
    routes![landing]
}