import interactions
@interactions.slash_command(name="show_list",description="shows a list you give?")
@interactions.slash_option(name="lst",description="a list of things") # ???
async def ping_test(ctx: interactions.SlashContext, lst: list[str]):
await ctx.send(f'got {lst}')
bot = interactions.Client()
@interactions.listen()
async def on_startup():
print("Bot is ready!")
bot.start("token")
is there a slash_option for a list like of strings?