CheqBooq/server/account/write.go

8 lines
145 B
Go
Executable File

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