12 lines
178 B
Go
12 lines
178 B
Go
package models
|
|
|
|
import "go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
|
type Identifiable interface {
|
|
GetID() primitive.ObjectID
|
|
}
|
|
|
|
type Validate interface {
|
|
validate() []error
|
|
}
|