Files

6 lines
72 B
Go
Raw Permalink Normal View History

2026-05-22 20:26:11 -04:00
package taskmanager
type Observer interface {
TaskUpdated(TaskInfo)
}