(w http.ResponseWriter, r *http.Request)
| 103 | } |
| 104 | |
| 105 | func getRUBFundsShares(w http.ResponseWriter, r *http.Request) { |
| 106 | w.Header().Set("Access-Control-Allow-Origin", "*") |
| 107 | w.Header().Set("Content-Type", "application/json") |
| 108 | var ArrShares = myRUBCurrentFunds("share") |
| 109 | json.NewEncoder(w).Encode(ArrShares) |
| 110 | } |
| 111 | |
| 112 | func getRUBFundsBonds(w http.ResponseWriter, r *http.Request) { |
| 113 | w.Header().Set("Access-Control-Allow-Origin", "*") |
nothing calls this directly
no test coverage detected