api/routes/crud/helper.go

15 lines
269 B
Go
Raw Normal View History

2018-07-10 12:02:23 +00:00
package crud
import (
2018-07-25 14:24:46 +00:00
"code.vikunja.io/api/models"
)
2018-07-10 12:02:23 +00:00
// WebHandler defines the webhandler object
// This does web stuff, aka returns json etc. Uses CRUDable Methods to get the data
2018-07-10 12:02:23 +00:00
type WebHandler struct {
CObject interface {
models.CRUDable
models.Rights
}
}