mirror of
https://github.com/evennia/evennia.git
synced 2026-03-17 05:16:31 +01:00
10 lines
289 B
Python
10 lines
289 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.server
|
|
Also, the initiated object manager is available as src.server.manager.
|
|
|
|
"""
|
|
|
|
from src.server.models import *
|
|
manager = ServerConfig.objects
|