Skip to main content

jessie_lib/layoutprovider/
mod.rs

1///The root of a Jessie app.
2///Jessie programs are "mini programs communicating with each other".
3///In our case, we use this LayoutProvider struct to tell Jessie that this is our "main mini program".
4pub trait LayoutProvider {
5    fn build();
6}