refactor: move init command to helper.py

This commit is contained in:
2026-05-14 18:20:10 +02:00
parent 8bdde87767
commit 50edd189ac
6 changed files with 95 additions and 81 deletions
+13 -2
View File
@@ -27,12 +27,23 @@ $ pip install -e .
### Run a single day
```shell
$ aoc <year> <day>
$ aoc run <year> <day>
```
### Run a whole year
```shell
$ aoc <year>
$ aoc run <year>
```
## Run all years
```shell
$ aoc run all
```
## Init a new day
```shell
$ aoc init <year> <day>
```