CheqBooq/server/account/read.go

8 lines
144 B
Go
Executable File

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