├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── aw_watcher_toggl ├── __init__.py ├── __main__.py └── main.py ├── pyproject.toml └── uv.lock /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTnhN/aw-watcher-toggl/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTnhN/aw-watcher-toggl/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTnhN/aw-watcher-toggl/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTnhN/aw-watcher-toggl/HEAD/README.md -------------------------------------------------------------------------------- /aw_watcher_toggl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTnhN/aw-watcher-toggl/HEAD/aw_watcher_toggl/__init__.py -------------------------------------------------------------------------------- /aw_watcher_toggl/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTnhN/aw-watcher-toggl/HEAD/aw_watcher_toggl/__main__.py -------------------------------------------------------------------------------- /aw_watcher_toggl/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTnhN/aw-watcher-toggl/HEAD/aw_watcher_toggl/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTnhN/aw-watcher-toggl/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTnhN/aw-watcher-toggl/HEAD/uv.lock --------------------------------------------------------------------------------