aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-04-02 05:44:42 +0100
committerAkshay <[email protected]>2021-04-02 05:44:42 +0100
commit23775fc56878c74f65a16de82f335443fe5a2c8d (patch)
tree188bc0bb02d515fefaf216c394de4dffd69664a3 /src/main.rs
parent83a2355e7cefc7100b319fb75f1ba550186a7577 (diff)
add widget and container primitives
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 9c186c9..304f6fc 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -6,11 +6,13 @@ mod command;
6mod consts; 6mod consts;
7mod dither; 7mod dither;
8mod error; 8mod error;
9mod guide;
9mod lisp; 10mod lisp;
10mod message; 11mod message;
11mod symmetry; 12mod symmetry;
12mod undo; 13mod undo;
13mod utils; 14mod utils;
15mod widget;
14 16
15use { 17use {
16 app::AppState, 18 app::AppState,