Search Apps Documentation Source Content File Folder Download Copy Actions Download

task.gno

0.16 Kb · 9 lines
1package evaluation
2
3// Maybe a task in the project management system
4type Task struct {
5	id          int
6	name        string
7	description string
8	status      string
9}