Skip to main content

init

Function init 

Source
pub fn init(token: impl Into<String>, config: Config)
Expand description

Creates the limon client with a given config.

ยงExample

fn main() {
  limon::init(limon::Config {
    debug: true,
    ..Default::default()
  });

  // Your application...
}