Skip to content

Commit

Permalink
fix: 路由地址
Browse files Browse the repository at this point in the history
  • Loading branch information
rehiy committed Feb 3, 2023
1 parent dee79d7 commit 5c47a43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/script/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

func Router(api *gin.RouterGroup) {

rg := api.Group("/task")
rg := api.Group("/")

rg.Use(midware.AuthGuard())

Expand Down
2 changes: 1 addition & 1 deletion api/taskline/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

func Router(api *gin.RouterGroup) {

rg := api.Group("/task")
rg := api.Group("/")

rg.Use(midware.AuthGuard())

Expand Down

0 comments on commit 5c47a43

Please sign in to comment.