rename ngin to rest

This commit is contained in:
kevin
2020-07-31 11:14:48 +08:00
parent e133ffd820
commit 0897f60c5d
78 changed files with 118 additions and 111 deletions

View File

@@ -9,13 +9,13 @@ import (
"zero/core/service"
"zero/core/stat"
"zero/core/syncx"
"zero/ngin"
"zero/rest"
)
func main() {
logx.Disable()
stat.SetReporter(nil)
server := ngin.MustNewEngine(ngin.NgConf{
server := rest.MustNewEngine(rest.RtConf{
ServiceConf: service.ServiceConf{
Name: "breaker",
Log: logx.LogConf{
@@ -28,7 +28,7 @@ func main() {
Timeout: 3000,
})
latch := syncx.NewLimit(10)
server.AddRoute(ngin.Route{
server.AddRoute(rest.Route{
Method: http.MethodGet,
Path: "/heavy",
Handler: func(w http.ResponseWriter, r *http.Request) {
@@ -47,7 +47,7 @@ func main() {
}
},
})
server.AddRoute(ngin.Route{
server.AddRoute(rest.Route{
Method: http.MethodGet,
Path: "/good",
Handler: func(w http.ResponseWriter, r *http.Request) {

View File

@@ -6,8 +6,8 @@ import (
"zero/core/logx"
"zero/core/service"
"zero/ngin"
"zero/ngin/httpx"
"zero/rest"
"zero/rest/httpx"
)
var (
@@ -47,7 +47,7 @@ func handle(w http.ResponseWriter, r *http.Request) {
func main() {
flag.Parse()
engine := ngin.MustNewEngine(ngin.NgConf{
engine := rest.MustNewEngine(rest.RtConf{
ServiceConf: service.ServiceConf{
Log: logx.LogConf{
Mode: "console",
@@ -61,7 +61,7 @@ func main() {
engine.Use(first)
engine.Use(second)
engine.AddRoute(ngin.Route{
engine.AddRoute(rest.Route{
Method: http.MethodGet,
Path: "/",
Handler: handle,

View File

@@ -7,8 +7,8 @@ import (
"zero/core/logx"
"zero/core/service"
"zero/ngin"
"zero/ngin/httpx"
"zero/rest"
"zero/rest/httpx"
)
var (
@@ -37,7 +37,7 @@ func handlePost(w http.ResponseWriter, r *http.Request) {
func main() {
flag.Parse()
engine := ngin.MustNewEngine(ngin.NgConf{
engine := rest.MustNewEngine(rest.RtConf{
ServiceConf: service.ServiceConf{
Log: logx.LogConf{
Mode: "console",
@@ -51,12 +51,12 @@ func main() {
})
defer engine.Stop()
engine.AddRoute(ngin.Route{
engine.AddRoute(rest.Route{
Method: http.MethodGet,
Path: "/",
Handler: handleGet,
})
engine.AddRoute(ngin.Route{
engine.AddRoute(rest.Route{
Method: http.MethodPost,
Path: "/",
Handler: handlePost,

View File

@@ -8,8 +8,8 @@ import (
"zero/core/logx"
"zero/core/service"
"zero/ngin"
"zero/ngin/httpx"
"zero/rest"
"zero/rest/httpx"
)
var (
@@ -42,7 +42,7 @@ func main() {
flag.Parse()
logx.Disable()
engine := ngin.MustNewEngine(ngin.NgConf{
engine := rest.MustNewEngine(rest.RtConf{
ServiceConf: service.ServiceConf{
Log: logx.LogConf{
Mode: "console",
@@ -54,7 +54,7 @@ func main() {
})
defer engine.Stop()
engine.AddRoute(ngin.Route{
engine.AddRoute(rest.Route{
Method: http.MethodGet,
Path: "/",
Handler: handle,

View File

@@ -7,8 +7,8 @@ import (
"zero/core/logx"
"zero/core/service"
"zero/ngin"
"zero/ngin/httpx"
"zero/rest"
"zero/rest/httpx"
)
var keyPem = flag.String("prikey", "private.pem", "the private key file")
@@ -31,16 +31,16 @@ func handle(w http.ResponseWriter, r *http.Request) {
func main() {
flag.Parse()
engine := ngin.MustNewEngine(ngin.NgConf{
engine := rest.MustNewEngine(rest.RtConf{
ServiceConf: service.ServiceConf{
Log: logx.LogConf{
Path: "logs",
},
},
Port: 3333,
Signature: ngin.SignatureConf{
Signature: rest.SignatureConf{
Strict: true,
PrivateKeys: []ngin.PrivateKeyConf{
PrivateKeys: []rest.PrivateKeyConf{
{
Fingerprint: "bvw8YlnSqb+PoMf3MBbLdQ==",
KeyFile: *keyPem,
@@ -50,7 +50,7 @@ func main() {
})
defer engine.Stop()
engine.AddRoute(ngin.Route{
engine.AddRoute(rest.Route{
Method: http.MethodPost,
Path: "/a/b",
Handler: handle,