mirror of
https://github.com/passbolt/go-passbolt-cli.git
synced 2025-07-13 05:09:09 +00:00
add keepass export support
This commit is contained in:
parent
f7aa2b232b
commit
ab3e63835a
4 changed files with 171 additions and 10 deletions
18
cmd/export.go
Normal file
18
cmd/export.go
Normal file
|
@ -0,0 +1,18 @@
|
|||
package cmd
|
||||
|
||||
import (
|
||||
"github.com/speatzle/go-passbolt-cli/keepass"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
// exportCmd represents the export command
|
||||
var exportCmd = &cobra.Command{
|
||||
Use: "export",
|
||||
Short: "Exports Passbolt Data",
|
||||
Long: `Exports Passbolt Data`,
|
||||
}
|
||||
|
||||
func init() {
|
||||
rootCmd.AddCommand(exportCmd)
|
||||
exportCmd.AddCommand(keepass.KeepassExportCmd)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue