1
0
mirror of https://github.com/chai2010/advanced-go-programming-book.git synced 2025-05-24 04:22:22 +00:00
This commit is contained in:
Xargin 2018-03-23 16:04:58 +08:00
parent daa47c9c31
commit 0d88dc3203

View File

@ -91,7 +91,7 @@ func HTTPGetOrderHandler(wr http.ResponseWriter, r *http.Request) {
r : r, r : r,
} }
logicResp,err := logic.CreateOrder(thriftEntryInstance) logicResp,err := logic.CreateOrder(httpEntryInstance)
if err != nil {} if err != nil {}
// ... // ...
} }