Skip to content

Instantly share code, notes, and snippets.

@diwakergupta
Created October 12, 2015 22:23
Show Gist options
  • Save diwakergupta/f3adfe98156a1a630809 to your computer and use it in GitHub Desktop.
Save diwakergupta/f3adfe98156a1a630809 to your computer and use it in GitHub Desktop.
type Paste struct {
// Generated
Id string `datastore:"id"`
Timestamp time.Time `datastore:"timestamp"`
// Required
Content string `datastore:"content,noindex"`
Email string `datastore:"email"`
// Optional/Best-effort
Title string `datastore:"title"`
Language string `datastore:"language"`
// Used for deletes, not persisted
IsOwner bool `datastore:"-"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment