mirror of
https://github.com/vale981/flask-semanticui
synced 2025-03-04 08:41:41 -05:00
13 lines
No EOL
218 B
Python
13 lines
No EOL
218 B
Python
from flask import Flask
|
|
from flask_semanticui import SemanticUI
|
|
|
|
|
|
def create_app():
|
|
app = Flask(__name__)
|
|
SemanticUI(app)
|
|
|
|
@app.route('/')
|
|
def hello():
|
|
return 'Hello, World!'
|
|
|
|
return app |