Skip to content

Commit

Permalink
update error Guide
Browse files Browse the repository at this point in the history
  • Loading branch information
cherry-yl-sh committed Jun 16, 2024
1 parent 3017c31 commit 9d73507
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpc_server/middlewares/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func AuthHandler() gin.HandlerFunc {
return func(c *gin.Context) {
apiKey := c.Query("apiKey")
if apiKey == "" {
c.JSON(http.StatusBadRequest, gin.H{"error": "ApiKey Is Required"})
c.JSON(http.StatusBadRequest, gin.H{"error": "ApiKey Is Required Go To Dashboard (dashboard.aastar.io) To Get It"})
c.Abort()
return
}
Expand Down

0 comments on commit 9d73507

Please sign in to comment.