2025-06-24 11:29:04 +02:00
|
|
|
package live
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"cloud.o-forge.io/core/oc-lib/models/utils"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type LiveInterface interface {
|
2025-06-26 15:57:49 +02:00
|
|
|
utils.DBObject
|
2026-04-28 11:48:23 +02:00
|
|
|
IsCompatible(service map[string]interface{}) bool
|
2025-06-26 15:57:49 +02:00
|
|
|
GetMonitorPath() string
|
2025-06-26 16:20:41 +02:00
|
|
|
GetResourcesID() []string
|
|
|
|
|
SetResourcesID(string)
|
2025-06-24 11:29:04 +02:00
|
|
|
}
|