gogmagog/models/action.go
Deepak 3a5961f003
All checks were successful
gitea-deepak/gogmagog/pipeline/head This commit looks good
adds basic db stuff
2020-12-26 12:44:05 -06:00

11 lines
154 B
Go

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