go-waku/waku/v2/rpc/debug.go

24 lines
359 B
Go
Raw Normal View History

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
}