10 lines
224 B
Go
10 lines
224 B
Go
package queues
|
|
|
|
const (
|
|
// Main is the primary task queue for the embedded worker.
|
|
Main = "member-console-main"
|
|
|
|
// External is for workflows that need to run on a separate worker.
|
|
External = "member-console-external"
|
|
)
|