lariv-rs 0.1.0

Compile-time plugin web application framework built on Axum, SeaORM, Maud, and HTMX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Typed [`CreateModal`] / [`PickerModal`] wiring for blog tag swap keys.

use super::keys::{TagCreateModalKey, TagSelectModalKey, TagSelectTableKey};
use super::routes::{BlogTagsCreateGetRouteTag, BlogTagsCreatePostRouteTag};

crate::impl_create_modal!(
    TagCreateModalKey,
    BlogTagsCreateGetRouteTag,
    BlogTagsCreatePostRouteTag,
    "p_blog.TagCreateForm"
);
crate::impl_picker_modal!(TagSelectModalKey, TagSelectTableKey);