mirror of
https://github.com/ayflying/p2p.git
synced 2026-03-04 17:29:22 +00:00
18 lines
220 B
Go
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() {}
|