fyp/logic/tasks/index.go

14 lines
234 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)
handleRemoteRunner(handle)
handleRunnerData(handle)
2024-04-12 20:36:23 +01:00
}