async function handler(storeId: number) {
    console.log(`Setting store to ${c.cyan(storeId.toString())} ...`);
    await session.setStore(storeId);
    console.log(c.green(`Success!`));
}