Skip to content

Commit

Permalink
fix: drop CORS support
Browse files Browse the repository at this point in the history
  • Loading branch information
songquanpeng committed Nov 23, 2022
1 parent 00ee736 commit db13ee6
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 17 deletions.
1 change: 0 additions & 1 deletion go.mod
Expand Up @@ -4,7 +4,6 @@ module message-pusher
go 1.18

require (
github.com/gin-contrib/cors v1.4.0
github.com/gin-contrib/gzip v0.0.6
github.com/gin-contrib/sessions v0.0.5
github.com/gin-contrib/static v0.0.1
Expand Down
2 changes: 0 additions & 2 deletions go.sum
Expand Up @@ -9,8 +9,6 @@ github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f h1:lO4WD4F/rVNCu3HqELle0jiPLLBs70cWOduZpkS1E78=
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f/go.mod h1:cuUVRXasLTGF7a8hSLbxyZXjz+1KgoB3wDUb6vlszIc=
github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=
github.com/gin-contrib/cors v1.4.0 h1:oJ6gwtUl3lqV0WEIwM/LxPF1QZ5qe2lGWdY2+bz7y0g=
github.com/gin-contrib/cors v1.4.0/go.mod h1:bs9pNM0x/UsmHPBWT2xZz9ROh8xYjYkiURUfmBoMlcs=
github.com/gin-contrib/gzip v0.0.6 h1:NjcunTcGAj5CO1gn4N8jHOSIeRFHIbn51z6K+xaN4d4=
github.com/gin-contrib/gzip v0.0.6/go.mod h1:QOJlmV2xmayAjkNS2Y8NQsMneuRShOU/kjovCXNuzzk=
github.com/gin-contrib/sessions v0.0.5 h1:CATtfHmLMQrMNpJRgzjWXD7worTh7g7ritsQfmF+0jE=
Expand Down
2 changes: 0 additions & 2 deletions main.go
Expand Up @@ -10,7 +10,6 @@ import (
"log"
"message-pusher/channel"
"message-pusher/common"
"message-pusher/middleware"
"message-pusher/model"
"message-pusher/router"
"os"
Expand Down Expand Up @@ -56,7 +55,6 @@ func main() {
// Initialize HTTP server
server := gin.Default()
server.Use(gzip.Gzip(gzip.DefaultCompression))
server.Use(middleware.CORS())

// Initialize session store
if common.RedisEnabled {
Expand Down
12 changes: 0 additions & 12 deletions middleware/cors.go

This file was deleted.

0 comments on commit db13ee6

Please sign in to comment.