mirror of
https://github.com/evennia/evennia.git
synced 2026-03-20 14:56:30 +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
|
|
|