Created
April 21, 2014 22:29
-
-
Save laser/11158766 to your computer and use it in GitHub Desktop.
Barrister IDL w/error code
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
interface TodoManager { | |
// returns all Todos | |
readTodos() []Todo | |
// creates new Todo and returns it with an id | |
createTodo(todo TodoProperties) Todo | |
// updates Todo and returns it | |
updateTodo(todo Todo) Todo | |
// deletes Todo. returns true if delete succeeded. if no Todo found, returns false | |
// | |
// Error Codes: | |
// | |
// * 1004 - User cannot delete their last todo | |
deleteTodo(id int) null | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment