hashira 0.0.2-alpha

A server side rendering framework build on top of Yew
Documentation
1
2
3
4
5
6
7
use crate::app::AppService;

/// A hook called on client initialization.
pub trait OnClientInitialize {
    /// Called on client initialization.
    fn call(&self, service: AppService);
}