Fix indentation on signaldctl raw docs

closes signald/signald.org#4
This commit is contained in:
Finn 2021-11-07 10:22:25 -08:00
parent 149d44b705
commit dd56e3d6f7

View file

@ -16,10 +16,9 @@ var rawCmd = &cobra.Command{
Short: "make a request to signald",
Long: `make a raw request to signald, returning the result. If request data is not provided via command line argument labeled \"json\", it must be provided via stdin.
Example usage:
signaldctl raw v1 get_profile '{"account": "+12024561414", "address": {"number": "+12024561111"}}'
`,
Example usage:
signaldctl raw v1 get_profile '{"account": "+12024561414", "address": {"number": "+12024561111"}}'`,
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) < 3 {
return cmd.Help()