Last active
May 25, 2018 08:06
-
-
Save Tarmil/31d6b51875e7ad7b1ae1c5fc52ac8daf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type User = { name: string; (* ... *) } | |
type UserId = int | |
type EndPoint<_> = | |
| [<EndPoint "GET /user/{id}">] | |
GetUser : id: UserId -> EndPoint<Json<User>> | |
| [<EndPoint "POST /user"; Json "userData">] | |
CreateUser : userData: User -> EndPoint<Json<UserId>> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment