Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 520 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 520 Bytes

Ratatui Simple template

The simple template will create the following project structure:

src/
├── app.rs     -> holds the state and application logic
├── main.rs    -> entry-point

Design choices

We have a small App struct that has a main loop that calls methods to handle events and draw the ui. The app can be quit by pressing any of Q/Esc/Ctrl+C.

We use color-eyre for simplifying any errors that need to be reported to the console.