package models import ( "time" ) type Action struct { ID int64 Description string CreatedAt time.Time UpdatedAt time.Time } func (m *Model) Actions() ([]*Action, error) { return m.SelectActions() }