1 Star 0 Fork 1

easyswoole-xuesi/p.i.g

forked from 叶华/p.i.g 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
application.go 636 Bytes
一键复制 编辑 原始数据 按行查看 历史
叶华 提交于 2024-01-11 15:07 . update
package p_i_g
import (
"fmt"
"net"
"net/http"
)
type Application struct {
port int
address net.IP
middleware []Middleware
}
func New() *Application {
return &Application{
port: 8080,
address: net.IPv4(127, 0, 0, 1),
}
}
func (a *Application) Use(m Middleware) {
a.middleware = append(a.middleware, m)
}
func (a *Application) Start() error {
http.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
NewKernel().Through(a.middleware).Handle(w, req)
})
err := http.ListenAndServe(
fmt.Sprintf("%s:%d", a.address.String(), a.port),
nil,
)
if err != nil {
return err
}
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/1592328848/p.i.g.git
git@gitee.com:1592328848/p.i.g.git
1592328848
p.i.g
p.i.g
master

搜索帮助