21 lines
391 B
Python
21 lines
391 B
Python
"""
|
|
Project: Magic Tracker
|
|
Author: Edward Middleton-Smith
|
|
Shuffle & Skirmish
|
|
|
|
Technology: Backend
|
|
Feature: Initialisation
|
|
|
|
Description:
|
|
Initialises the Flask application.
|
|
Initialises any extensions used in the project.
|
|
"""
|
|
|
|
from flask import Flask
|
|
|
|
app = Flask(__name__)
|
|
app.config.from_object('config')
|
|
|
|
# from app import routes
|
|
# import business_objects, lib, models
|