tgltrk 0.1.2

Unofficial Toggl Track CLI — manage timers, entries, projects, clients, and tags from the command line
1
2
3
4
5
6
7
8
9
10
11
mod client;
mod project;
mod tag;
mod time_entry;
mod user;

pub use client::{Client, ClientId};
pub use project::{Project, ProjectId};
pub use tag::{Tag, TagId};
pub use time_entry::{TaskId, TimeEntry, TimeEntryId};
pub use user::{User, Workspace, WorkspaceId};