mirror of
https://github.com/evennia/evennia.git
synced 2026-03-21 07:16:31 +01:00
8 lines
130 B
Python
8 lines
130 B
Python
"""
|
|
Custom manager for CommChannel objects.
|
|
"""
|
|
from django.db import models
|
|
|
|
class CommChannelManager(models.Manager):
|
|
pass
|
|
|