This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/health/models_pre_oci.py
Joseph Schorr 7b1dfbb256 yapf
2017-07-11 13:48:55 +03:00

10 lines
251 B
Python

from data.model import health
from health.models_interface import HealthCheckDataInterface
class PreOCIModel(HealthCheckDataInterface):
def check_health(self, app_config):
return health.check_health(app_config)
pre_oci_model = PreOCIModel()