Temporary commit

This commit is contained in:
Liu Zhicong
2023-08-14 12:44:19 -07:00
parent 9814889d34
commit 3d8f6fd5c8
21 changed files with 380 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
class pkg_info:
def __init__(self) -> None:
self.name = ""
self.cid = None
self.depends : list[str] = None
pass
def parse_pkg_name(pkg_name:str) -> Tuple[str, str, str]:
#return pkg_id,version_str,cid
pass
@property
def cid(self) -> str:
return self.cid
class pkg_media_info:
def __init__(self) -> None:
pass