Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

13 lines
225B

  1. package main
  2. import (
  3. "biukop.com/sfm/loan"
  4. "net/http"
  5. )
  6. func apiV1ChartRecent10Loans(w http.ResponseWriter, r *http.Request, ss *loan.Session) {
  7. data := loan.Recent10Loans()
  8. //send out
  9. apiV1SendJson(data, w, r, ss)
  10. }