mirror of
https://github.com/evennia/evennia.git
synced 2026-03-19 14:26:30 +01:00
13 lines
330 B
Python
13 lines
330 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.
|
|
|
|
"""
|
|
|
|
from src.scripts.scripts import *
|
|
from src.scripts.models import ScriptDB
|
|
|
|
manager = ScriptDB.objects
|