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