Skip to content

Instantly share code, notes, and snippets.

@ivanceras
Created April 12, 2022 14:47
Show Gist options
  • Save ivanceras/ad63e6ae00908773f9fdda12cf6102d8 to your computer and use it in GitHub Desktop.
Save ivanceras/ad63e6ae00908773f9fdda12cf6102d8 to your computer and use it in GitHub Desktop.
Model definition
use sauron::prelude::*;
struct App {
count: i32,
}
impl App {
fn new() -> Self {
App { count: 0 }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment