libs5-go/interfaces/service.go

12 lines
149 B
Go
Raw Normal View History

package interfaces
type Service interface {
Node() Node
Start() error
Stop() error
Init() error
}
type Services interface {
P2P() P2PService
}