openpilotci.py 391 B

123456789101112
  1. from openpilot.tools.lib.openpilotcontainers import OpenpilotCIContainer
  2. def get_url(*args, **kwargs):
  3. return OpenpilotCIContainer.get_url(*args, **kwargs)
  4. def upload_file(*args, **kwargs):
  5. return OpenpilotCIContainer.upload_file(*args, **kwargs)
  6. def upload_bytes(*args, **kwargs):
  7. return OpenpilotCIContainer.upload_bytes(*args, **kwargs)
  8. BASE_URL = OpenpilotCIContainer.BASE_URL