mirror of
https://github.com/evennia/evennia.git
synced 2026-04-03 06:27: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
|
||
|
|
|