fyp/logic/tasks/index.go

12 lines
180 B
Go
Raw Normal View History

2024-04-12 20:36:23 +01:00
package tasks
import (
. "git.andr3h3nriqu3s.com/andr3/fyp/logic/utils"
)
func HandleTasks(handle *Handle) {
handleUpload(handle)
handleList(handle)
handleRequests(handle)
2024-04-12 20:36:23 +01:00
}