mirror of https://github.com/EasyDarwin/EasyDarwin
9 lines
210 B
Go
9 lines
210 B
Go
![]() |
package models
|
||
|
|
||
|
type Stream struct {
|
||
|
URL string `gorm:"type:varchar(256);primary_key;unique"`
|
||
|
CustomPath string `gorm:"type:varchar(256)"`
|
||
|
IdleTimeout int
|
||
|
HeartbeatInterval int
|
||
|
}
|