mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 13:39:53 +00:00
10 lines
195 B
Go
10 lines
195 B
Go
package domain
|
|
|
|
import "time"
|
|
|
|
type Meta struct {
|
|
Id string `json:"id" db:"id"`
|
|
CreatedAt time.Time `json:"created" db:"created"`
|
|
UpdatedAt time.Time `json:"updated" db:"updated"`
|
|
}
|