macro_rules! include_satellite {
() => { ... };
}
Expand description
Include the stock Juno satellite features into your Juno application.
The include_satellite!
macro allows you to easily import and use all the essential features and
functionalities provided by the Juno satellite crate (junobuild_satellite
). These features include
various functions and utilities for managing documents, assets, controllers, rules, custom domains,
and more, effectively supercharging the functionality of your Juno dapp.
Example:
use junobuild_satellite::include_satellite;
// Include Juno satellite features
include_satellite!();