mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-24 17:41:03 +01:00
11 lines
371 B
Go
11 lines
371 B
Go
package models
|
|
|
|
import "go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
|
type DependencyLogV2 struct {
|
|
any `collection:"dependency_logs"`
|
|
BaseModelV2[DependencyLogV2] `bson:",inline"`
|
|
TaskId primitive.ObjectID `json:"task_id" bson:"task_id"`
|
|
Content string `json:"content" bson:"content"`
|
|
}
|