map-machine/test/__init__.py
2021-05-25 02:53:34 +03:00

11 lines
265 B
Python

from pathlib import Path
from roentgen.icon import ShapeExtractor
from roentgen.scheme import Scheme
SCHEME: Scheme = Scheme(Path("scheme/default.yml"))
SCHEME_EXTRACTOR: ShapeExtractor = ShapeExtractor(
Path("icons/icons.svg"), Path("icons/config.json")
)