17 lines
270 B
Go
17 lines
270 B
Go
package models
|
|
|
|
import (
|
|
. "git.andr3h3nriqu3s.com/andr3/fyp/logic/utils"
|
|
)
|
|
|
|
func HandleModels (handle *Handle) {
|
|
handleAdd(handle)
|
|
handleEdit(handle)
|
|
handleDelete(handle)
|
|
handleList(handle)
|
|
|
|
// Data endpoints
|
|
handleDataUpload(handle)
|
|
}
|
|
|