摘要: ``` package main import ( "fmt" "net/http" ) type DB struct{ name string age int } var gdb DB = DB{"catty",26} func get(w http.ResponseWriter, req *http.Request) { // The "/" pattern matches ... 阅读全文
posted @ 2019-01-02 20:35 yvhqbat 阅读(347) 评论(0) 推荐(0) 编辑