butterfly-bot 0.3.2

Butterfly Bot is an opinionated personal-ops AI assistant built for people who want results, not setup overhead.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
diesel::table! {
    todo_items (id) {
        id -> Integer,
        user_id -> Text,
        title -> Text,
        notes -> Nullable<Text>,
        position -> Integer,
        created_at -> BigInt,
        updated_at -> BigInt,
        completed_at -> Nullable<BigInt>,
    }
}