This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
from dataclasses import dataclass, field | |
from datetime import datetime, timezone | |
from decimal import Decimal | |
from time import perf_counter | |
from typing import Any, Callable | |
from uuid import UUID, uuid4 | |
import orjson | |
from adaptix import NameStyle as RNameStyle |