mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
4b0daeb47b
Move all the services to status-node, as some of them were there, some of them were in the geth backend and scattered around.
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
|
|
}
|