Add select by action id

This commit is contained in:
2020-12-29 16:08:31 -06:00
parent 50bbcdc71d
commit ad47895597
5 changed files with 89 additions and 4 deletions

View File

@@ -4,6 +4,7 @@ package models
type Store interface {
SelectActions() ([]*Action, error)
SelectPlans() ([]*Plan, error)
SelectActionByID(id int) (*Action, error)
}
// Model represents a current model item.