mirror of https://github.com/status-im/go-waku.git
31 lines
546 B
Go
31 lines
546 B
Go
package rpc
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/status-im/go-waku/waku/v2/node"
|
|
)
|
|
|
|
type DebugService struct {
|
|
node *node.WakuNode
|
|
}
|
|
|
|
type InfoArgs struct {
|
|
}
|
|
|
|
type InfoReply struct {
|
|
Version string `json:"version,omitempty"`
|
|
}
|
|
|
|
func (d *DebugService) GetV1Info(r *http.Request, args *InfoArgs, reply *InfoReply) error {
|
|
reply.Version = "2.0"
|
|
return nil
|
|
}
|
|
|
|
type VersionResponse string
|
|
|
|
func (d *DebugService) GetV1Version(r *http.Request, args *InfoArgs, reply *VersionResponse) error {
|
|
*reply = VersionResponse(node.GitCommit)
|
|
return nil
|
|
}
|