1 Star 0 Fork 0

王旭 / banking

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
app.go 765 Bytes
一键复制 编辑 原始数据 按行查看 历史
王旭 提交于 2022-07-10 20:55 . (Part 1)
package app
import (
"log"
"net/http"
"gitee.com/waterwx_admin/banking/domain"
"gitee.com/waterwx_admin/banking/service"
"github.com/gorilla/mux"
)
// *********rest handlers*********
func Start() {
// 自己创建一个请求多路复用器
router := mux.NewRouter()
// 注入wiring
// ch := CustomerHandlers{service.NewDefaultCustomerService(domain.NewCustomerRepositoryStub())}
ch := CustomerHandlers{service.NewDefaultCustomerService(domain.NewCustomerRepositoryDb())}
// define routes
router.HandleFunc("/customers", ch.getAllCustomers).Methods(http.MethodGet)
router.HandleFunc("/customers/{customer_id:[0-9]+}", ch.getCustomer).Methods(http.MethodGet)
// starting server
log.Fatal(http.ListenAndServe("localhost:8000", router))
}
Go
1
https://gitee.com/waterwx_admin/banking.git
git@gitee.com:waterwx_admin/banking.git
waterwx_admin
banking
banking
01fa8199727c

搜索帮助