This commit is contained in:
Liang Ding 2022-10-11 23:33:27 +08:00
parent 41a7c5d63f
commit 54b29cb92f
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
4 changed files with 133 additions and 3 deletions

View file

@ -278,4 +278,6 @@ func ServeAPI(ginServer *gin.Engine) {
ginServer.Handle("POST", "/api/notification/pushMsg", model.CheckAuth, pushMsg)
ginServer.Handle("POST", "/api/notification/pushErrMsg", model.CheckAuth, pushErrMsg)
ginServer.Handle("POST", "/api/snippet/getSnippet", model.CheckAuth, getSnippet)
}