webapp-frontend 1.0.0

A web application completely written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The frontend library
#![deny(missing_docs)]
#![recursion_limit = "512"]

#[macro_use]
mod api;
mod component;
mod route;
mod service;
mod string;

pub use crate::{component::root::RootComponent, service::log::init_logger};

/// The global session cookie name
const SESSION_COOKIE: &str = "sessionToken";