mirror of
https://github.com/Fishwaldo/bl_mcu_sdk.git
synced 2025-07-23 21:29:17 +00:00
14 lines
135 B
Python
14 lines
135 B
Python
class TinyObj:
|
|
pass
|
|
|
|
|
|
class BaseObj(TinyObj):
|
|
pass
|
|
|
|
|
|
def print(val: any):
|
|
pass
|
|
|
|
|
|
def set(argPath: str, val: any):
|
|
pass
|