12 lines
142 B
Go
12 lines
142 B
Go
|
package gateway
|
||
|
|
||
|
import (
|
||
|
"git.loafle.net/commons_go/server"
|
||
|
)
|
||
|
|
||
|
func New(sh ServerHandler) server.Server {
|
||
|
s := server.New(sh)
|
||
|
|
||
|
return s
|
||
|
}
|