Files
p2p/internal/logic/system/system.go

14 lines
129 B
Go

package system
type sSystem struct{}
func New() *sSystem {
return &sSystem{}
}
func init() {
}
func (s *sSystem) Init() {}