您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
189B

  1. package main
  2. import (
  3. "biukop.com/sfm/loan"
  4. "net/http"
  5. )
  6. func apiV1LenderList(w http.ResponseWriter, r *http.Request, ss *loan.Session) {
  7. apiV1SendJson(loan.LenderList(), w, r, ss)
  8. }