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