Skip to content

Commit

Permalink
chroe: opt cron message style
Browse files Browse the repository at this point in the history
  • Loading branch information
engigu committed Jan 1, 2025
1 parent 1dbbe5f commit fbe1f29
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions routers/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ func InitRouter(f embed.FS) *gin.Engine {
apiV1.GET("/statistic", v1.GetStatisticData)

// cronMessage
apiV1.POST("/sendmessages/addone", v1.AddCronMsgTask)
apiV1.GET("/sendmessages/list", v1.GetCronMsgList)
apiV1.POST("/sendmessages/delete", v1.DeleteCronMsgTask)
apiV1.POST("/sendmessages/edit", v1.EditCronMsgTask)
apiV1.POST("/cronmessages/addone", v1.AddCronMsgTask)
apiV1.GET("/cronmessages/list", v1.GetCronMsgList)
apiV1.POST("/cronmessages/delete", v1.DeleteCronMsgTask)
apiV1.POST("/cronmessages/edit", v1.EditCronMsgTask)

}

Expand Down

0 comments on commit fbe1f29

Please sign in to comment.