6 lines
182 B
Python
6 lines
182 B
Python
from __future__ import annotations
|
|
|
|
# Centralized participant role constants to avoid string duplication/typos
|
|
ROLE_CHEF = "chef"
|
|
ROLE_CLEANUP = "cleanup"
|
|
ROLE_CONSUMER = "consumer"
|