mirror of
https://github.com/evennia/evennia.git
synced 2026-03-31 04:57:16 +02:00
8 lines
126 B
Python
8 lines
126 B
Python
"""
|
|
Custom manager for HelpEntry objects.
|
|
"""
|
|
from django.db import models
|
|
|
|
class HelpEntryManager(models.Manager):
|
|
pass
|
|
|