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