loadstar/src/template.rs
Milkman337 a392734d59
All checks were successful
Cargo Build & Test / Tests (pull_request) Successful in 12s
Cargo Build & Test / Test publish (pull_request) Successful in 12s
Cargo Build & Test / check-cargo-version (pull_request) Successful in 6s
Add ability to render templates
2024-08-20 22:40:04 +02:00

6 lines
74 B
Rust

use maud::Markup;
pub trait Template {
fn render(&self) -> Markup;
}