├── .gitignore ├── LICENSE ├── README.md ├── clock.py └── config.json.example /.gitignore: -------------------------------------------------------------------------------- 1 | config.json 2 | .vscode/** -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngle37/auto-clock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngle37/auto-clock/HEAD/README.md -------------------------------------------------------------------------------- /clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngle37/auto-clock/HEAD/clock.py -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngle37/auto-clock/HEAD/config.json.example --------------------------------------------------------------------------------