Skip to content

Instantly share code, notes, and snippets.

@laser
Created April 21, 2014 22:29
Show Gist options
  • Save laser/11158766 to your computer and use it in GitHub Desktop.
Save laser/11158766 to your computer and use it in GitHub Desktop.
Barrister IDL w/error code
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