Skip to content

Instantly share code, notes, and snippets.

@ParthDesai
Created February 2, 2015 09:36
Show Gist options
  • Save ParthDesai/48da7acc38c2981c8048 to your computer and use it in GitHub Desktop.
Save ParthDesai/48da7acc38c2981c8048 to your computer and use it in GitHub Desktop.
channel.go
package models
type Channel struct {
UserID string `json:"user_id" bson:"user_id"`
OrganizationID string `json:"org_id" bson:"org_id"`
ApplicationID string `json:"app_id" bson:"app_id"`
ChannelData interface{} `json:"channel_data" bson:"channel_data"`
Ident string `json:"ident" bson:"ident"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment