mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
14 lines
214 B
Go
14 lines
214 B
Go
|
package common
|
||
|
|
||
|
import (
|
||
|
"github.com/ethereum/go-ethereum/p2p"
|
||
|
"github.com/ethereum/go-ethereum/rpc"
|
||
|
)
|
||
|
|
||
|
type StatusService interface {
|
||
|
Start() error
|
||
|
Stop() error
|
||
|
Protocols() []p2p.Protocol
|
||
|
APIs() []rpc.API
|
||
|
}
|