mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-25 17:42:25 +01:00
11 lines
357 B
Go
11 lines
357 B
Go
package models
|
|
|
|
import "go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
|
type DependencyLog struct {
|
|
any `collection:"dependency_logs"`
|
|
BaseModel[DependencyLog] `bson:",inline"`
|
|
TargetId primitive.ObjectID `json:"target_id" bson:"target_id"`
|
|
Content string `json:"content" bson:"content"`
|
|
}
|