mirror of
https://github.com/Kizuren/uLinkShortener.git
synced 2025-12-21 13:06:19 +01:00
10 lines
175 B
Go
10 lines
175 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type User struct {
|
|
AccountID string `json:"account_id" bson:"account_id"`
|
|
CreatedAt time.Time `json:"created_at" bson:"created_at"`
|
|
}
|