Exemplo n.º 1
0
#!/usr/bin/env python3
from serverpanel import create_app

application = create_app('config')

Exemplo n.º 2
0
    def create_app(self):
        app = create_app('config')
        app.config['DEBUG'] = False

        return app
Exemplo n.º 3
0
    def create_app(self):
        app = create_app('config')
        app.config['DEBUG'] = False

        return app
Exemplo n.º 4
0
#!/usr/bin/env python3
from serverpanel import create_app

app = create_app('config')

app.run()