10 lines
197 B
Go
10 lines
197 B
Go
|
package models
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type model struct {
|
||
|
EntityType string `bson:"ent,omitempty"`
|
||
|
CreatedAt time.Time `bson:"created_at,omitempty"`
|
||
|
UpdatedAt time.Time `bson:"updated_at,omitempty"`
|
||
|
}
|