mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
13 lines
260 B
Go
13 lines
260 B
Go
package interfaces
|
|
|
|
import "go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
|
type ModelArtifact interface {
|
|
Model
|
|
GetSys() (sys ModelArtifactSys)
|
|
GetTagIds() (ids []primitive.ObjectID)
|
|
SetTagIds(ids []primitive.ObjectID)
|
|
SetObj(obj Model)
|
|
SetDel(del bool)
|
|
}
|