diff --git a/src/parkapi_sources/parkapi_sources.py b/src/parkapi_sources/parkapi_sources.py index 7354c64..58c34f4 100644 --- a/src/parkapi_sources/parkapi_sources.py +++ b/src/parkapi_sources/parkapi_sources.py @@ -20,6 +20,7 @@ ) from .converters.base_converter.pull import PullConverter from .converters.base_converter.push import PushConverter +from .converters.bfrk import BfrkCarPushConverter, BfrkBikePushConverter from .exceptions import MissingConfigException, MissingConverterException from .util import ConfigHelper @@ -27,6 +28,8 @@ class ParkAPISources: converter_classes: list[Type[BaseConverter]] = [ BahnV2PullConverter, + BfrkBikePushConverter, + BfrkCarPushConverter, FreiburgPullConverter, HeidelbergPullConverter, KarlsruhePullConverter,