Skip to content

Instantly share code, notes, and snippets.

@laser
Created May 2, 2014 21:18
Show Gist options
  • Save laser/e5f71b4f188defdcb585 to your computer and use it in GitHub Desktop.
Save laser/e5f71b4f188defdcb585 to your computer and use it in GitHub Desktop.
Todo Manager V1 IDL
struct TodoProperties {
title string
completed bool
}
struct Todo extends TodoProperties {
id int
}
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 and returns true
deleteTodo(todo Todo) bool
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment