2012-03-24 23:02:45 +01:00
|
|
|
"""
|
2013-11-14 19:31:17 +01:00
|
|
|
Makes it easier to import by grouping all relevant things already at this
|
|
|
|
|
level.
|
2012-03-24 23:02:45 +01:00
|
|
|
|
|
|
|
|
You can henceforth import most things directly from src.scripts
|
|
|
|
|
Also, the initiated object manager is available as src.scripts.manager.
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
2014-12-23 11:53:32 +01:00
|
|
|
# Note - we MUST NOT import src.scripts.scripts here, or
|
|
|
|
|
# proxy models will fall under Django migrations.
|
|
|
|
|
#from src.scripts.scripts import *
|
2012-03-24 23:02:45 +01:00
|
|
|
from src.scripts.models import ScriptDB
|
|
|
|
|
|
|
|
|
|
manager = ScriptDB.objects
|