Coverage for couscous/cli.py: 100.00%
7 statements
« prev ^ index » next coverage.py v7.4.1, created at 2024-02-04 16:23:50 +00:00
« prev ^ index » next coverage.py v7.4.1, created at 2024-02-04 16:23:50 +00:00
1"""Actionable information from specification prose.
31. visit specification textual representation documents
42. derive policies as well as rules, validate the consistency
53. generate configurations
7"""
9import sys
10from typing import no_type_check
12import couscous.couscous as derive
15@no_type_check
16def main(argv=None):
17 """Process the job."""
18 argv = sys.argv[1:] if argv is None else argv
19 derive.main(argv)