Export to stdOut not into a file

This commit is contained in:
Tobie Morgan Hitchcock 2017-02-16 10:00:06 +00:00
parent fcfa88a33b
commit 1c784da214

View file

@ -19,9 +19,9 @@ import (
) )
var exportCmd = &cobra.Command{ var exportCmd = &cobra.Command{
Use: "export [options] <file>", Use: "export",
Short: "Export data from an existing database into a JSON file", Short: "Export data from an existing database",
Example: " surreal export backup.zip", Example: " surreal export",
Run: func(cmd *cobra.Command, args []string) { Run: func(cmd *cobra.Command, args []string) {
// Do Stuff Here // Do Stuff Here
}, },