mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2025-01-19 10:28:29 +01:00
8 lines
142 B
Python
8 lines
142 B
Python
from flask import Blueprint
|
|
|
|
embed = Blueprint("embed", __name__)
|
|
|
|
@embed.route("/<guild_id>")
|
|
def guild_embed(guild_id):
|
|
return guild_id
|