瀏覽代碼

update readme with cap. http methods

tags/v0.9.0
jimzhan 9 年之前
父節點
當前提交
5776664cee
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      README.md

+ 2
- 2
README.md 查看文件

@@ -42,7 +42,7 @@ import (

func main() {
app := rex.New()
app.Get("/", func(w http.ResponseWriter, r *http.Request) {
app.GET("/", func(w http.ResponseWriter, r *http.Request) {
io.WriteString(w, "Hello World")
})
app.Run()
@@ -82,7 +82,7 @@ func main() {
env.Set("PORT", 9394)

app := rex.New()
app.Get("/", index)
app.GET("/", index)
app.Run()
}
```

Loading…
取消
儲存