Skip to content

Commit

Permalink
added the print
Browse files Browse the repository at this point in the history
  • Loading branch information
ibilalkayy committed Jun 19, 2023
1 parent a5e9190 commit 15ddf4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/mysql/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ func DeleteProject(email, board, project string) {
_, err = delete.Exec(email, board, project) // Execute the prepared statement with the provided values
middleware.HandleError(err) // Handle any errors that occur during execution
} else {
fmt.Println(errors.New("Flags are required to delete the project"))
fmt.Println(errors.New("Flags are required to delete the project")) // Print an error message if required values are missing
}
}

0 comments on commit 15ddf4f

Please sign in to comment.