You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
328 B
11 lines
328 B
2 years ago
|
import asyncio
|
||
|
|
||
|
from app import FabulaApp
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
FabulaApp.new(
|
||
|
webhook_url="https://discord.com/api/webhooks/1084019766559260714/" +
|
||
|
"s6CPtH48h6_y5QIE0Cbq4MJMXoEH7K63jcMYUNTVu3msTneGNb09tCEt4tUV7WAC-ACZ").run()
|
||
|
|
||
|
# See PyCharm help at https://www.jetbrains.com/help/pycharm/
|