feat: #10 added the base for the class on the page

This commit is contained in:
2023-09-23 11:44:36 +01:00
parent 1964303dce
commit 04de6ad574
8 changed files with 273 additions and 13 deletions

View File

@@ -1,7 +1,8 @@
package models
import (
. "git.andr3h3nriqu3s.com/andr3/fyp/logic/utils"
model_classes "git.andr3h3nriqu3s.com/andr3/fyp/logic/models/classes"
. "git.andr3h3nriqu3s.com/andr3/fyp/logic/utils"
)
func HandleModels (handle *Handle) {
@@ -12,5 +13,7 @@ func HandleModels (handle *Handle) {
// Data endpoints
handleDataUpload(handle)
model_classes.HandleList(handle)
}