mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-15 10:22:43 +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
|