add new file

This commit is contained in:
he liu
2022-01-23 17:30:38 +08:00
parent 05b2e55f39
commit c482967f8c
125 changed files with 9688 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package service
import "net"
type HttpService struct {
ln net.Listener
}
func NewHttpService(ln net.Listener) *HttpService {
return &HttpService{ln: ln}
}