Skip to main content

santui_core/
lib.rs

1pub mod app;
2pub mod auth;
3pub mod config;
4pub mod event;
5pub mod plugin;
6pub mod theme;
7pub mod widgets;
8
9pub use app::Santui;
10pub use auth::{AuthHandle, User};
11pub use plugin::{Plugin, PluginCmdItem, PluginContext};
12pub use theme::Theme;