A single repository to watch.
| 50 | |
| 51 | @dataclass |
| 52 | class WatchRepo: |
| 53 | """A single repository to watch.""" |
| 54 | |
| 55 | path: str |
| 56 | """Resolved absolute path to the repository root.""" |
| 57 | |
| 58 | alias: str |
| 59 | """Short name for this repo (derived from directory name when not specified).""" |
| 60 | |
| 61 | |
| 62 | @dataclass |
no outgoing calls