This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
go-monero/cmd/monero/commands/daemon/command.go
2022-10-05 09:40:23 +02:00

17 lines
278 B
Go

package daemon
import (
"github.com/spf13/cobra"
"git.gammaspectra.live/P2Pool/go-monero/cmd/monero/options"
)
var RootCommand = &cobra.Command{
Use: "daemon",
Short: "execute remote procedure calls against a monero node",
}
func init() {
options.Bind(RootCommand)
}