mirror of
https://github.com/evennia/evennia.git
synced 2026-03-20 14:56:30 +01:00
8 lines
120 B
Python
8 lines
120 B
Python
"""
|
|
Custom manager for Object objects.
|
|
"""
|
|
from django.db import models
|
|
|
|
class ObjectManager(models.Manager):
|
|
pass
|
|
|