8 lines
199 B
Python
8 lines
199 B
Python
|
from interactions import StringSelectMenu
|
||
|
|
||
|
REGION_MENU = StringSelectMenu(
|
||
|
"US", "EU", "KR", "TW",
|
||
|
placeholder="Select a region",
|
||
|
min_values=1, max_values=1,
|
||
|
custom_id='region_menu'
|
||
|
)
|