├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── LICENSE ├── README.md ├── dc_schema ├── __init__.py └── cli.py ├── poetry.lock ├── pyproject.toml └── tests ├── __init__.py └── test_dc_schema.py /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peter554/dc_schema/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peter554/dc_schema/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peter554/dc_schema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peter554/dc_schema/HEAD/README.md -------------------------------------------------------------------------------- /dc_schema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peter554/dc_schema/HEAD/dc_schema/__init__.py -------------------------------------------------------------------------------- /dc_schema/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peter554/dc_schema/HEAD/dc_schema/cli.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peter554/dc_schema/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peter554/dc_schema/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_dc_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peter554/dc_schema/HEAD/tests/test_dc_schema.py --------------------------------------------------------------------------------