mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-12 21:02:13 +08:00
8b44d6978d
date: 2024-02-21T23:02:42 master commit: 0b4d08fab8e35a264bc7383e878538f8083c33e5
13 lines
391 B
Python
13 lines
391 B
Python
from openpilot.tools.lib.openpilotcontainers import OpenpilotCIContainer
|
|
|
|
def get_url(*args, **kwargs):
|
|
return OpenpilotCIContainer.get_url(*args, **kwargs)
|
|
|
|
def upload_file(*args, **kwargs):
|
|
return OpenpilotCIContainer.upload_file(*args, **kwargs)
|
|
|
|
def upload_bytes(*args, **kwargs):
|
|
return OpenpilotCIContainer.upload_bytes(*args, **kwargs)
|
|
|
|
BASE_URL = OpenpilotCIContainer.BASE_URL
|