Files
p2p/internal/logic/system/system.go
2025-10-27 19:07:48 +08:00

18 lines
220 B
Go

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() {}