mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 05:29:51 +00:00
10 lines
189 B
Go
10 lines
189 B
Go
package domain
|
|
|
|
import "time"
|
|
|
|
type Meta struct {
|
|
Id string `json:"id" db:"id"`
|
|
Created time.Time `json:"created" db:"created"`
|
|
Updated time.Time `json:"updated" db:"updated"`
|
|
}
|