mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 06:33:57 +08:00
* wip cleanup
* Wip
* fixes
* fix
* cleanup
* keep this for now
* dest
old-commit-hash: 3f0b56b364
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
|