8 lines
148 B
Go
8 lines
148 B
Go
|
package models
|
||
|
|
||
|
// StreamKey represents a single stream key
|
||
|
type StreamKey struct {
|
||
|
Key string `json:"key"`
|
||
|
Comment string `json:"comment"`
|
||
|
}
|