6 lines
125 B
Python
6 lines
125 B
Python
from muck.models.dbref import Dbref
|
|
|
|
class Exit(Dbref):
|
|
__mapper_args__ = {
|
|
"polymorphic_identity": "exit"
|
|
}
|