Echo Writes Code

html.rs

1
2
3
4
5
6
7
8
9
10
11
12
use crate::application::{ ApplicationDelegate };
use crate::errors::{ Result };

pub fn run<D: ApplicationDelegate>(mut delegate: D) -> Result<()> {
  delegate.on_ready();

  Ok(())
}

pub fn quit() -> Result<()> {
  Ok(())
}