first commit
This commit is contained in:
commit
be3f79d2e1
14 files changed
+1141
No files matched your search
@@ -0,0 +1,14 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"go.mongodb.org/mongo-driver/bson/primitive"
|
||||
)
|
||||
|
||||
type Album struct {
|
||||
ID primitive.ObjectID `bson:"_id"`
|
||||
Name string `json:"name"`
|
||||
Created_at time.Time `json:"created_at"`
|
||||
Updated_at time.Time `json:"updated_at"`
|
||||
}
|
||||
Reference in new issue
Block a user