Files
2021-07-23 10:22:08 +01:00

12 lines
199 B
Python

import os
import cherrypy
from webhooks_server.server import WebhookServer
def main():
cherrypy.quickstart(WebhookServer(os.environ.get("DISCORD_URL")))
if __name__ == "__main__":
main()