mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-07-15 17:08:55 +00:00
Add Mumble support (#1245)
This commit is contained in:
12
vendor/layeh.com/gumble/gumble/contextactions.go
generated
vendored
Normal file
12
vendor/layeh.com/gumble/gumble/contextactions.go
generated
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
package gumble
|
||||
|
||||
// ContextActions is a map of ContextActions.
|
||||
type ContextActions map[string]*ContextAction
|
||||
|
||||
func (c ContextActions) create(action string) *ContextAction {
|
||||
contextAction := &ContextAction{
|
||||
Name: action,
|
||||
}
|
||||
c[action] = contextAction
|
||||
return contextAction
|
||||
}
|
Reference in New Issue
Block a user