Building new test application.

This commit is contained in:
Conrad Nelson 2025-09-03 10:55:25 -05:00
parent 909f20f207
commit c43b17662d
8 changed files with 91 additions and 5 deletions

6
muck/models/thing.py Normal file
View file

@ -0,0 +1,6 @@
from muck.models.dbref import Dbref
class Thing(Dbref):
__mapper_args__ = {
"polymorphic_identity": "thing"
}