8 lines
144 B
Go
8 lines
144 B
Go
package balance
|
|
|
|
import "net/http"
|
|
|
|
func Read(w http.ResponseWriter, r *http.Request) {
|
|
http.Error(w, "not impl", http.StatusNotImplemented)
|
|
}
|