Skip to content

Commit

Permalink
refactor: changed the call message for the form command
Browse files Browse the repository at this point in the history
  • Loading branch information
Slug-Boi committed Jul 9, 2024
1 parent c8fc238 commit 40bb585
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cmd/form.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ var formCmd = &cobra.Command{
The command can be used to retrieve form responses incase you want to pipe it to another command or for testing purposes.
`,
Run: func(cmd *cobra.Command, args []string) {
//TODO: Change to something more meaningful
fmt.Println("form called")

var conf forms.Config
var err error
Expand All @@ -39,6 +37,8 @@ var formCmd = &cobra.Command{
}
}

fmt.Println("Form is being processed with the following Form ID:", conf.FormID)

form := forms.GetForm(conf)

fmt.Println(form)
Expand Down

0 comments on commit 40bb585

Please sign in to comment.