Projekt

Obecné

Profil

Stáhnout (188 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 6e333f54 Stanislav Král
from flask import Flask
2
3
app = Flask(__name__)
4
5
6
@app.route('/')
7
def index():
8
    return 'Welcome to the X.509 management application homepage!'
9
10
11
if __name__ == '__main__':
12
    app.run()