Files
oc-lib/models/live/interfaces.go
2026-04-28 11:48:23 +02:00

14 lines
247 B
Go
Executable File

package live
import (
"cloud.o-forge.io/core/oc-lib/models/utils"
)
type LiveInterface interface {
utils.DBObject
IsCompatible(service map[string]interface{}) bool
GetMonitorPath() string
GetResourcesID() []string
SetResourcesID(string)
}