mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
13 lines
236 B
Go
13 lines
236 B
Go
package interfaces
|
|
|
|
import (
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
|
)
|
|
|
|
type Model interface {
|
|
GetId() (id primitive.ObjectID)
|
|
SetId(id primitive.ObjectID)
|
|
SetCreated(by primitive.ObjectID)
|
|
SetUpdated(by primitive.ObjectID)
|
|
}
|