xenu_nntp/lib/nntp/tiny/newsgroup.py
XANTRONIX Development 05fc964d11 Those should be slots
2024-11-10 02:35:50 -05:00

8 lines
234 B
Python

from nntp.tiny.db import DatabaseTable
class Newsgroup(DatabaseTable):
__slots__ = 'id', 'created_on', 'name', 'description',
name = 'newsgroup'
key = 'id'
columns = 'id', 'created_on', 'name', 'description',