Skip to content
Snippets Groups Projects
Select Git revision
  • 76073dd28c46f59c247f09846f43bd92c016f8af
  • main default protected
  • 75389691-a67c-422a-91e9-aa58bfb5-main-patch-32205
  • test-pipe
  • extended-scripts
  • structured-badges
  • guix-pipeline
  • cabal-pipeline
8 results

TiledAbstract.hs

Blame
  • profiling.py 210 B
    #!/usr/bin/python3
    from werkzeug.contrib.profiler import ProfilerMiddleware
    from uffd import create_app
    app = create_app()
    app.wsgi_app = ProfilerMiddleware(app.wsgi_app, restrictions=[30])
    app.run(debug=True)