Open mrredo opened 1 year ago
ran into this as well but running the gosf server in a go subroutine fixed it for me
...
// start socket server in go subroutine
go func() {
gosf.Startup(...)
}()
// start the gin gonic server in the main thread
...
Now i can only run gin gonic or gosf server not them both