tstor/src/tasks/task.go
2024-06-15 01:14:44 +03:00

5 lines
58 B
Go

package tasks
type Task interface {
Executor() string
}