fyp/logic/models/index.go

25 lines
540 B
Go
Raw Normal View History

package models
import (
model_classes "git.andr3h3nriqu3s.com/andr3/fyp/logic/models/classes"
models_train "git.andr3h3nriqu3s.com/andr3/fyp/logic/models/train"
. "git.andr3h3nriqu3s.com/andr3/fyp/logic/utils"
)
func HandleModels (handle *Handle) {
handleAdd(handle)
handleEdit(handle)
handleDelete(handle)
handleList(handle)
// Data endpoints
handleDataUpload(handle)
model_classes.HandleList(handle)
// Train endpoints
2023-09-28 12:16:36 +01:00
handleRun(handle)
models_train.HandleTrainEndpoints(handle)
}