feat 链路追踪

This commit is contained in:
2026-01-16 22:01:35 +08:00
parent 7cb057fc91
commit e59d106700
11 changed files with 394 additions and 108 deletions

8
module/module.go Normal file
View File

@@ -0,0 +1,8 @@
package module
type Module interface {
Init() error
Start() error
Stop() error
Bind(data ...any) Module
}