Tyler Hallada
76cc87631f
Frontend is built with Bun. It uses Stimulus to progressively enhance the server-built HTML. Currently, it only replaces UTC timestamps from the server with the time in the browser's timezone.
13 lines
237 B
Rust
13 lines
237 B
Rust
pub mod config;
|
|
pub mod error;
|
|
pub mod handlers;
|
|
pub mod jobs;
|
|
pub mod log;
|
|
pub mod models;
|
|
pub mod partials;
|
|
pub mod state;
|
|
pub mod utils;
|
|
pub mod uuid;
|
|
|
|
pub const JS_BUNDLES: &'static str = include_str!("../static/js/js_bundles.txt");
|