sources.py
python
sha256:a78e7e5a8740e03315f325d19edeb3aa1b306b3337d04abbaa9a9e0f3bbeb7a1
docs: MuseHub-first before ISR #74 — staging solidify NEXT
Human
2 days ago
| 1 | """Closed source-id vocabulary (§HGD.4.1).""" |
| 2 | |
| 3 | from __future__ import annotations |
| 4 | |
| 5 | SOURCE_IDS = frozenset( |
| 6 | { |
| 7 | "github_contents", |
| 8 | "github_meta", |
| 9 | "github_checks_advisory", |
| 10 | "musehub_read", |
| 11 | } |
| 12 | ) |
| 13 | BASELINE_SOURCE_IDS = frozenset({"github_contents", "github_meta"}) |
| 14 | OPTIONAL_SOURCE_IDS = frozenset({"github_checks_advisory", "musehub_read"}) |
| 15 | |
| 16 | |
| 17 | def is_known_source_id(source_id: str) -> bool: |
| 18 | """Return whether ``source_id`` is in the closed Auto v1 vocabulary.""" |
| 19 | return source_id in SOURCE_IDS |
File History
1 commit
sha256:a78e7e5a8740e03315f325d19edeb3aa1b306b3337d04abbaa9a9e0f3bbeb7a1
docs: MuseHub-first before ISR #74 — staging solidify NEXT
Human
2 days ago