(w http.ResponseWriter, r *http.Request)
| 110 | } |
| 111 | |
| 112 | func getRUBFundsBonds(w http.ResponseWriter, r *http.Request) { |
| 113 | w.Header().Set("Access-Control-Allow-Origin", "*") |
| 114 | w.Header().Set("Content-Type", "application/json") |
| 115 | var ArrShares = myRUBCurrentFunds("bond") |
| 116 | json.NewEncoder(w).Encode(ArrShares) |
| 117 | } |
| 118 | |
| 119 | func getUSDFundsShares(w http.ResponseWriter, r *http.Request) { |
| 120 | w.Header().Set("Access-Control-Allow-Origin", "*") |
nothing calls this directly
no test coverage detected