8 lines
194 B
Python
8 lines
194 B
Python
|
|
from flask import Flask
|
||
|
|
|
||
|
|
app = Flask(__name__)
|
||
|
|
from moduleapp.apps.admin import admin
|
||
|
|
from moduleapp.apps.frontend import frontend
|
||
|
|
app.register_blueprint(admin)
|
||
|
|
app.register_blueprint(frontend)
|