Files
project_sanic/main.py

10 lines
100 B
Python

from src.handler import handler
def main():
handler()
if __name__ == "__main__":
main()