File: __init__.py

package info (click to toggle)
python-mashumaro 3.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,408 kB
  • sloc: python: 19,981; sh: 16; makefile: 5
file content (9 lines) | stat: -rw-r--r-- 214 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
from .builder import JSONSchemaBuilder, build_json_schema
from .dialects import DRAFT_2020_12, OPEN_API_3_1

__all__ = [
    "JSONSchemaBuilder",
    "build_json_schema",
    "DRAFT_2020_12",
    "OPEN_API_3_1",
]