chloe_todo_tui 0.1.0

A terminal-based todo application with TUI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// @generated automatically by Diesel CLI.

diesel::table! {
    todos (id) {
        id -> Integer,
        title -> Text,
        description -> Nullable<Text>,
        completed -> Bool,
        created_at -> Timestamp,
        updated_at -> Timestamp,
        priority -> Text,
    }
}