Create a new channel as a copy of main.
Rename main to:
Delete main? This cannot be undone.
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() }