(w http.ResponseWriter, r *http.Request)
| 117 | } |
| 118 | |
| 119 | func getUSDFundsShares(w http.ResponseWriter, r *http.Request) { |
| 120 | w.Header().Set("Access-Control-Allow-Origin", "*") |
| 121 | w.Header().Set("Content-Type", "application/json") |
| 122 | var ArrShares = myUSDCurrentFunds("share") |
| 123 | json.NewEncoder(w).Encode(ArrShares) |
| 124 | } |
| 125 | |
| 126 | func getUSDFundsBonds(w http.ResponseWriter, r *http.Request) { |
| 127 | w.Header().Set("Access-Control-Allow-Origin", "*") |
nothing calls this directly
no test coverage detected