mirror of
https://github.com/ayflying/p2p.git
synced 2026-03-04 17:29:22 +00:00
14 lines
129 B
Go
14 lines
129 B
Go
package system
|
|
|
|
type sSystem struct{}
|
|
|
|
func New() *sSystem {
|
|
return &sSystem{}
|
|
}
|
|
|
|
func init() {
|
|
|
|
}
|
|
|
|
func (s *sSystem) Init() {}
|