This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from flask import Flask | |
| from database import db_session | |
| app = Flask(__name__) | |
| @app.teardown_appcontext | |
| def shutdown_session(exception=None): | |
| db_session.remove() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local ALName, ALPrivate = ... | |
| local AtlasLoot = _G.AtlasLoot | |
| local ClassFilter = {} | |
| AtlasLoot.Data.ClassFilter = ClassFilter | |
| local AL = AtlasLoot.Locales | |
| local Requirements = AtlasLoot.Data.Requirements | |
| -- ## WoW | |
| local GetItemInfoInstant = GetItemInfoInstant |