2019-06-25 11:42:17 +00:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
|
|
|
"gopkg.in/urfave/cli.v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
var Cmd = &cli.Command{
|
2019-06-28 09:03:28 +00:00
|
|
|
Name: "daemon",
|
2019-06-25 11:42:17 +00:00
|
|
|
Usage: "Start a lotus daemon process",
|
|
|
|
Action: func(context *cli.Context) error {
|
|
|
|
return serveRPC()
|
|
|
|
},
|
|
|
|
}
|