Skip to main content

comodoro/
lib.rs

1// This file is part of Comodoro, a CLI to manage timers.
2//
3// Copyright (C) 2025-2026 Clément DOUIN <pimalaya.org@posteo.net>
4//
5// This program is free software: you can redistribute it and/or
6// modify it under the terms of the GNU Affero General Public License
7// as published by the Free Software Foundation, either version 3 of
8// the License, or (at your option) any later version.
9//
10// This program is distributed in the hope that it will be useful, but
11// WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13// Affero General Public License for more details.
14//
15// You should have received a copy of the GNU Affero General Public
16// License along with this program. If not, see
17// <https://www.gnu.org/licenses/>.
18
19pub mod account;
20pub mod cli;
21pub mod client;
22pub mod config;
23pub mod hooks;
24pub mod protocol;
25pub mod server;
26pub mod stream;
27pub mod tcp;
28pub mod timer;
29#[cfg(unix)]
30#[path = "./unix-socket.rs"]
31pub mod unix_socket;