12 lines
164 B
Go
12 lines
164 B
Go
package tasks
|
|
|
|
import (
|
|
. "git.andr3h3nriqu3s.com/andr3/fyp/logic/utils"
|
|
)
|
|
|
|
func HandleTasks (handle *Handle) {
|
|
handleUpload(handle)
|
|
handleList(handle)
|
|
}
|
|
|