blob: 671b3309305045a5f6f63241b27b948a9cf28c9f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
use serde::{Deserialize, Serialize};
use serde_json::{json, Value};
mod display;
mod json;
mod rc;
mod stdin;
////////////////////////////////////////////////////////////////////////////////
// Main
////////////////////////////////////////////////////////////////////////////////
fn main() {
rc::example();
}
|