shiori/internal/cmd/export.go

16 lines
259 B
Go
Raw Normal View History

2019-05-21 11:31:40 +08:00
package cmd
import (
"github.com/spf13/cobra"
)
func exportCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "export target-file",
Short: "Export bookmarks into HTML file in Netscape Bookmark format",
Args: cobra.ExactArgs(1),
}
return cmd
}