pace_core 0.19.0

pace-core - library to support timetracking on the command line
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

use crate::{
    domain::activity::{Activity, ActivityId, ActivityLog},
    error::PaceResult,
    storage::ActivityStorage,
};

struct SqliteActivityStorage {
    conn: Connection,
}