Skip to content

AlistairB/haskell-todo-mvc

Repository files navigation

haskell-todo-mvc

A haskell backend for a todo MVC app

# create a new todo
$ curl --verbose --request POST --header "Content-Type: application/json" \
    --data '{"name": "do stuff" }' \
	http://localhost:8080/todos

# get all todo in database
$ curl --verbose --request GET --header "Content-Type: application/json" \
	http://localhost:8080/todos

# get certain todo in database
$ curl --verbose --request GET --header "Content-Type: application/json" \
	http://localhost:8080/todos/1

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published