mirror of
https://github.com/evennia/evennia.git
synced 2026-03-29 03:57:17 +02:00
9 lines
130 B
Python
9 lines
130 B
Python
|
|
"""
|
||
|
|
Custom manager for CommChannel objects.
|
||
|
|
"""
|
||
|
|
from django.db import models
|
||
|
|
|
||
|
|
class CommChannelManager(models.Manager):
|
||
|
|
pass
|
||
|
|
|