feat: moved files into a better position for organization closes #8

This commit is contained in:
2023-09-21 16:43:11 +01:00
parent b8278bacf6
commit 1986be1a84
16 changed files with 582 additions and 500 deletions

12
logic/models/index.go Normal file
View File

@@ -0,0 +1,12 @@
package models
import (
. "git.andr3h3nriqu3s.com/andr3/fyp/logic/utils"
)
func HandleModels (handle *Handle) {
handleAdd(handle)
handleEdit(handle)
handleDelete(handle)
handleList(handle)
}