Source code for jivago.config.properties.application_config_loader

from jivago.config.properties.application_properties import ApplicationProperties


[docs] class ApplicationConfigLoader(object):
[docs] def matches(self, filepath: str) -> bool: raise NotImplementedError
[docs] def read(self, filepath: str) -> ApplicationProperties: raise NotImplementedError