server支持自定义配置

This commit is contained in:
2021-04-17 21:41:40 +08:00
parent 70007b036d
commit 563c334757
7 changed files with 88 additions and 16 deletions

View File

@ -8,6 +8,7 @@
package abstract
import (
"github.com/go-developer/websocket/config"
"github.com/go-developer/websocket/context"
)
@ -65,5 +66,5 @@ type IWebsocket interface {
// Author : go_developer@163.com<张德满>
//
// Date : 7:01 下午 2021/4/17
GetWSServerConfig()
GetWSServerConfig() []config.SetWSServerConfig
}