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