dao

package
v0.0.9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 5, 2025 License: MIT Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Repository

type Repository interface {
	GetTasks() ([]Task, error)
	GetTaskByID(id string) (*Task, error)
	CreateTask(task *Task) error
	UpdateTask(task *Task) error
	DeleteTask(id string) error
	AddSubTask(parentID string, task *Task) error
}

Repository defines the interface for task storage

type Task

type Task struct {
	ID        string    `json:"id"`
	Title     string    `json:"title"`
	Status    string    `json:"status"`
	StartTime time.Time `json:"startTime"`
	ParentID  *string   `json:"parentId,omitempty"`
	SubTasks  []Task    `json:"subTasks,omitempty"`
}

Task represents a task in the system

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL
JackTT - Gopher 🇻🇳