16 lines
363 B
Go
16 lines
363 B
Go
package entities
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Timestamp struct {
|
|
CreatedAt time.Time `gorm:"type:timestamp with time zone" json:"created_at"`
|
|
UpdatedAt time.Time `gorm:"type:timestamp with time zone" json:"updated_at"`
|
|
}
|
|
|
|
type Authorization struct {
|
|
Token string `json:"token" binding:"required"`
|
|
Role string `json:"role" binding:"required,oneof=user admin"`
|
|
}
|