@bot.command()

@lightbulb.command('dogimg',"Sends a random dom picture")

@lightbulb.implements(lightbulb.SlashCommand)

async def dogimg(ctx: lightbulb.Context) -> None:

  async with aiohttp.ClientSession() as session:

    async with session.get("https://dog.ceo/api/breeds/image/random") as r:

      resp = await r.json()

      embed = hikari.Embed(title="Generated Image!", color=0x2ecc71)

      embed.set_image(resp['message'])

      embed.set_footer(resp['status'])

  await ctx.respond(embed=embed)