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
13
14
15
16
//! Finance integration for the customers plugin (accounting sidebar, addon app, finance chrome).

pub mod accounting_sidebar;
pub mod apps;
#[cfg(feature = "plugin-finance-customer")]
pub mod templates;

pub struct FinanceCustomerTag;

crate::define_plugin_install! {
    plugin: FinanceCustomerTag;
    steps: [
        cap_hook(crate::plugins::finance_accounts::accounting_sidebar::AccountingSidebarTag, crate::plugins::finance_accounts::accounting_sidebar::AccountingSidebarCap, accounting_sidebar::Hook),
        apps(apps::Hook),
    ]
}