Rename fmfuncs -> core (cleaner, semantic)

This commit is contained in:
2026-06-10 18:17:21 +08:00
parent 5e23778d90
commit 2bc00f8207
9 changed files with 14 additions and 14 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""插件状态枚举 — 统一的插件生命周期状态跟踪"""
from enum import Enum
class PluginStatus(str, Enum):
UNLOADED = "unloaded"
LOADING = "loading"
LOADED = "loaded"
INITIALIZING = "initializing"
RUNNING = "running"
ERROR = "error"
STOPPING = "stopping"
STOPPED = "stopped"
UNLOADING = "unloading"