Skip to content
This repository has been archived by the owner on May 16, 2021. It is now read-only.

Commit

Permalink
Add A Base Command For Unsetting Users Data
Browse files Browse the repository at this point in the history
  • Loading branch information
mainawycliffe committed Aug 18, 2020
1 parent 9b19d55 commit 721de83
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions cmd/unset.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package cmd

import (
"github.com/spf13/cobra"
)

// unsetCmd represents the unset command
var unsetCmd = &cobra.Command{
Use: "unset",
Short: "A base command for unsetting user account data",
}

func init() {
usersCmd.AddCommand(unsetCmd)
}

0 comments on commit 721de83

Please sign in to comment.