uLinkShortener/internal/models/user.go
2025-04-02 08:37:01 +02:00

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"`
}