pagetop/src/core.rs
2024-02-09 14:05:38 +01:00

13 lines
336 B
Rust

//! Key types and functions for creating actions, components, packages, and themes.
// API to define functions that alter the behavior of PageTop core.
pub mod action;
// API to build new components.
pub mod component;
// API to add new features with packages.
pub mod package;
// API to add new layouts with themes.
pub mod theme;