增加分布式更新方法

This commit is contained in:
2025-10-27 19:07:48 +08:00
parent 10c349b82f
commit c48c85f075
15 changed files with 345 additions and 112 deletions

View File

@@ -0,0 +1,17 @@
package system
import (
"github.com/ayflying/p2p/internal/service"
)
type sSystem struct{}
func New() *sSystem {
return &sSystem{}
}
func init() {
service.RegisterSystem(New())
}
func (system *sSystem) Init() {}