Skip to content

Instantly share code, notes, and snippets.

@egonelbre
Created August 13, 2015 14:25
Show Gist options
  • Save egonelbre/de4946ee5ac869805c25 to your computer and use it in GitHub Desktop.
Save egonelbre/de4946ee5ac869805c25 to your computer and use it in GitHub Desktop.
package issue
type ID int
type Status string
const (
Created = Status("Created")
Closed = Status("Closed")
)
type Info struct {
ID ID
Caption string
Desc string
Status Status
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment