toggl 0.1.2

Unofficial command-line interface for Toggl Track using the v9 API.
1
2
3
4
5
6
7
8
9
10
11
pub const OUTDATED_APP_ERROR_MESSAGE: &str =
    "Make sure you are on the latest version of the app or file an issue here:";
pub const CLIENT_NAME: &str = "github.com/heytherewill/toggl-cli";
pub const GENERIC_ERROR: &str = "Something went wrong.";
pub const NETWORK_ERROR_MESSAGE: &str =
    "An error occurred when making a network request\nCheck your connection and try again.";
pub const DESERIALIZATION_ERROR_MESSAGE: &str = "An error occurred when making a network request.";
pub const ISSUE_LINK: &str = "https://github.com/heytherewill/toggl-cli/issues/new";
pub const CREDENTIALS_ACCESS_ERROR: &str = "An error occurred when reading your credentials.";
pub const FZF_NOT_INSTALLED_ERROR: &str = "fzf could not be found. Is it installed?";
pub const OPERATION_CANCELLED: &str = "Operation cancelled";