CheqBooq/server/balance/read.go

8 lines
144 B
Go
Executable File

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