update:test迁移重命名为digital-human

This commit is contained in:
3030332422
2026-05-12 09:27:39 +08:00
parent 6e1ed9fa4d
commit 41ad57ad4f
99 changed files with 89 additions and 49 deletions
@@ -0,0 +1,18 @@
from typing import Any
class Plugin:
name: str = "plugin"
priority: int = 50
def setup(self, app: Any) -> None:
return None
def start(self) -> None:
return None
def stop(self) -> None:
return None
def shutdown(self) -> None:
return None