mirror of
https://github.com/evennia/evennia.git
synced 2026-03-18 05:46:31 +01:00
15 lines
440 B
Python
15 lines
440 B
Python
"""
|
|
Makes it easier to import by grouping all relevant things already at this
|
|
level.
|
|
|
|
You can henceforth import most things directly from src.scripts
|
|
Also, the initiated object manager is available as src.scripts.manager.
|
|
|
|
"""
|
|
|
|
# Note - we MUST NOT import src.scripts.scripts here, or
|
|
# proxy models will fall under Django migrations.
|
|
#from src.scripts.scripts import *
|
|
#from src.scripts.models import ScriptDB
|
|
|
|
#manager = ScriptDB.objects
|