#!/usr/bin/env python3
from borgweb.app import create_app

application = create_app()

if __name__ == '__main__':
    application.run(debug=True)

