initial version
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Tyler
2020-01-14 23:32:53 -05:00
commit eca3834fd7
53 changed files with 11473 additions and 0 deletions

22
obsws/events_profiles.go Normal file
View File

@ -0,0 +1,22 @@
package obsws
// This file is automatically generated.
// https://github.com/christopher-dG/go-obs-websocket/blob/master/codegen/protocol.py
// ProfileChangedEvent : Triggered when switching to another profile or when renaming the current profile.
//
// Since obs-websocket version: 4.0.0.
//
// https://github.com/Palakis/obs-websocket/blob/4.3-maintenance/docs/generated/protocol.md#profilechanged
type ProfileChangedEvent struct {
_event `json:",squash"`
}
// ProfileListChangedEvent : Triggered when a profile is created, added, renamed, or removed.
//
// Since obs-websocket version: 4.0.0.
//
// https://github.com/Palakis/obs-websocket/blob/4.3-maintenance/docs/generated/protocol.md#profilelistchanged
type ProfileListChangedEvent struct {
_event `json:",squash"`
}