6 lines
152 B
Python
6 lines
152 B
Python
from muck.models.dbref import Dbref, ObjectType
|
|
|
|
class Program(Dbref):
|
|
__mapper_args__ = {
|
|
"polymorphic_identity": ObjectType.PROGRAM
|
|
}
|