mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-28 18:12:05 +08:00
6d316f2bc7
date: 2024-06-11T01:36:39 master commit: f8cb04e4a8b032b72a909f68b808a50936184bee
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
|