personal-site/pkg/tasks/example.go
2024-06-18 14:27:39 -04:00

9 lines
218 B
Go

package tasks
// TypeExample is the type for the example task.
// This is what is passed in to TaskClient.New() when creating a new task
const TypeExample = "example_task"
type ExampleTask struct {
Message string
}