Coverage for src/csv_schema_validator/cli/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.10.6, created at 2025-12-23 15:34 +0100
« prev ^ index » next coverage.py v7.10.6, created at 2025-12-23 15:34 +0100
1"""
2CSV Schema Validator CLI - Command-line interface for CSV schema validation.
4This package provides a command-line interface for validating CSV files against
5JSON schemas using the csv-schema-validator library.
6"""
8from .cli import cli, show_help, show_version
10__version__ = "0.1.1"
11__all__ = [
12 "cli",
13 "show_help",
14 "show_version",
15]