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

6 lines
81 B
Rust
Raw Normal View History

2024-05-01 22:40:56 +02:00
use maud::Markup;
pub trait HtmlRenderable {
fn to_html(&self) -> Markup;
}