mirror of
https://github.com/Kizuren/uLinkShortener.git
synced 2026-01-04 05:34:19 +01:00
Rewritten in go
This commit is contained in:
parent
b131756235
commit
b17e528180
23 changed files with 989 additions and 18 deletions
10
internal/models/user.go
Normal file
10
internal/models/user.go
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
package models
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
type User struct {
|
||||
AccountID string `json:"account_id" bson:"account_id"`
|
||||
CreatedAt time.Time `json:"created_at" bson:"created_at"`
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue