This repository has been archived on 2024-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
clego-app/src/traits/html_renderable.rs
2024-05-01 22:40:56 +02:00

6 lines
81 B
Rust

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