mirror of
https://github.com/enzet/map-machine.git
synced 2025-05-02 11:46:41 +02:00
17 lines
358 B
Python
17 lines
358 B
Python
"""
|
|
Tests for Röntgen project.
|
|
"""
|
|
from pathlib import Path
|
|
|
|
from roentgen.icon import ShapeExtractor
|
|
from roentgen.scheme import Scheme
|
|
|
|
__author__ = "Sergey Vartanov"
|
|
__email__ = "me@enzet.ru"
|
|
|
|
SCHEME: Scheme = Scheme(Path("scheme/default.yml"))
|
|
SHAPE_EXTRACTOR: ShapeExtractor = ShapeExtractor(
|
|
Path("icons/icons.svg"), Path("icons/config.json")
|
|
)
|
|
|
|
|