chore: splitting monolith into packages

This commit is contained in:
2026-04-02 17:22:55 +02:00
parent 3d61c78c35
commit be1dd05d9b
9 changed files with 171 additions and 116 deletions

10
commands/list_tasks.go Normal file
View File

@@ -0,0 +1,10 @@
package commands
import (
"gotask-cli/models"
"gotask-cli/utils"
)
func ListTasks(backlog []models.Task) {
utils.PrintTasksAsATable(backlog)
}