mirror of
https://github.com/BreizhHardware/project_sanic.git
synced 2026-01-18 16:47:25 +01:00
10 lines
116 B
Python
10 lines
116 B
Python
import cProfile
|
|
from src.handler import handler
|
|
|
|
|
|
def main():
|
|
handler()
|
|
|
|
|
|
cProfile.run("main()", "output.prof")
|