1
2
3
4
5
6
7
pub struct Guest {}

pub trait GuestCore {
    // static methods
    fn console_log(message: String);
    fn success(response: String);
}