mirror of
https://github.com/oarkflow/socketio.git
synced 2025-12-24 13:57:56 +08:00
10 lines
201 B
Go
10 lines
201 B
Go
//go:build sio_svr_v3 && !(sio_svr_v2 && sio_svr_v1)
|
|
// +build sio_svr_v3
|
|
// +build !sio_svr_v2 !sio_svr_v1
|
|
|
|
package socketio
|
|
|
|
func NewServer(opts ...Option) *ServerV3 {
|
|
return NewServerV3(opts...)
|
|
}
|