mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
7 lines
149 B
Go
7 lines
149 B
Go
package models
|
|
|
|
// StreamKey represents a single stream key.
|
|
type StreamKey struct {
|
|
Key string `json:"key"`
|
|
Comment string `json:"comment"`
|
|
}
|