aster/aster_apps/mod.rs
1//! aster Apps module
2//!
3//! This module contains types and utilities for working with aster Apps,
4//! which are UI resources that can be rendered in an MCP server or native
5//! aster apps, or something in between.
6
7pub mod resource;
8
9pub use resource::{CspMetadata, McpAppResource, ResourceMetadata, UiMetadata};