feat(backend): scaffold cyclone package skeleton
This commit is contained in:
@@ -0,0 +1 @@
|
||||
__version__ = "0.1.0"
|
||||
@@ -0,0 +1,4 @@
|
||||
from cyclone.cli import main
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
@@ -0,0 +1,45 @@
|
||||
"""Public re-exports for the 837P parser."""
|
||||
|
||||
from cyclone.parsers.exceptions import CycloneParseError, CycloneValidationError
|
||||
from cyclone.parsers.models import (
|
||||
Address,
|
||||
BatchSummary,
|
||||
BillingProvider,
|
||||
ClaimHeader,
|
||||
ClaimOutput,
|
||||
Diagnosis,
|
||||
Envelope,
|
||||
ParseResult,
|
||||
Payer,
|
||||
Procedure,
|
||||
ServiceLine,
|
||||
Subscriber,
|
||||
ValidationIssue,
|
||||
ValidationReport,
|
||||
)
|
||||
from cyclone.parsers.payer import PayerConfig
|
||||
from cyclone.parsers.segments import Delimiters, tokenize
|
||||
from cyclone.parsers.parse_837 import parse
|
||||
|
||||
__all__ = [
|
||||
"Address",
|
||||
"BatchSummary",
|
||||
"BillingProvider",
|
||||
"ClaimHeader",
|
||||
"ClaimOutput",
|
||||
"CycloneParseError",
|
||||
"CycloneValidationError",
|
||||
"Delimiters",
|
||||
"Diagnosis",
|
||||
"Envelope",
|
||||
"ParseResult",
|
||||
"Payer",
|
||||
"PayerConfig",
|
||||
"Procedure",
|
||||
"ServiceLine",
|
||||
"Subscriber",
|
||||
"ValidationIssue",
|
||||
"ValidationReport",
|
||||
"parse",
|
||||
"tokenize",
|
||||
]
|
||||
Reference in New Issue
Block a user