|
123456789101112 |
- package main
-
- import (
- "biukop.com/sfm/loan"
- "net/http"
- )
-
- func apiV1ChartRecent10Loans(w http.ResponseWriter, r *http.Request, ss *loan.Session) {
- data := loan.Recent10Loans()
- //send out
- apiV1SendJson(data, w, r, ss)
- }
|