Files
project_sanic/profiler.py

10 lines
116 B
Python

import cProfile
from src.handler import handler
def main():
handler()
cProfile.run("main()", "output.prof")