rally_exporter/models/common.go

11 lines
100 B
Go

package models
import (
"time"
)
type Model struct {
CreatedAt time.Time
UpdatedAt time.Time
}