2024-01-17 17:21:47 -05:00
|
|
|
from openpilot.tools.lib.openpilotcontainers import OpenpilotCIContainer
|
2020-06-04 18:57:25 -07:00
|
|
|
|
2024-01-17 17:21:47 -05:00
|
|
|
def get_url(*args, **kwargs):
|
|
|
|
|
return OpenpilotCIContainer.get_url(*args, **kwargs)
|
2020-11-19 21:05:29 -08:00
|
|
|
|
2024-01-17 17:21:47 -05:00
|
|
|
def upload_file(*args, **kwargs):
|
|
|
|
|
return OpenpilotCIContainer.upload_file(*args, **kwargs)
|
2022-05-11 15:03:05 -07:00
|
|
|
|
2024-01-17 17:21:47 -05:00
|
|
|
def upload_bytes(*args, **kwargs):
|
|
|
|
|
return OpenpilotCIContainer.upload_bytes(*args, **kwargs)
|
2023-08-25 14:01:10 -07:00
|
|
|
|
2024-01-17 17:21:47 -05:00
|
|
|
BASE_URL = OpenpilotCIContainer.BASE_URL
|