mirror of
https://github.com/go-shiori/shiori.git
synced 2025-02-22 06:53:22 +08:00
15 lines
259 B
Go
15 lines
259 B
Go
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
|
|
}
|