Codebase list golang-github-nlopes-slack / 676c3c4 config.go
676c3c4

Tree @676c3c4 (Download .tar.gz)

config.go @676c3c4raw · history · blame

package slack

// Config contains some config parameters needed
// Token always needs to be set for the api to function
// Origin and Protocol are optional and only needed for websocket
type Config struct {
	token    string
	origin   string
	protocol string
}