mal/lib.rs
1/*
2App State
3- The actual app state
4
5Mutations
6- Actually mutates the app
7- Keeps a log for backtracking
8
9Actions --|
10actions to call from mutations |
11 |--> Accessible
12 |
13Getters --|
14get values from the app state
15
16Shared Application State
17Flow of User Input -> Handle Events
18Rendering UI
19Routing
20
21*/
22
23/// Authorization
24pub mod auth;
25
26/// API request functions
27pub mod api;
28
29/// UI
30pub mod ui;
31
32/// Config
33pub mod config;
34
35/// App
36pub mod app;
37
38/// Network
39pub mod network;
40
41/// Events
42pub mod event;
43
44/// Handlers
45pub mod handlers;
46
47/// Cli
48pub mod cli;
49
50pub mod logging;