All checks were successful
gitea-deepak/gogmagog/pipeline/head This commit looks good
11 lines
154 B
Go
11 lines
154 B
Go
package models
|
|
|
|
type Action struct {
|
|
ID int64
|
|
Description string
|
|
}
|
|
|
|
func (m *Model) Actions() ([]*Action, error) {
|
|
return m.SelectActions()
|
|
}
|