xenu_nntp/lib/nntp/tiny/newsgroup.py
2024-11-10 02:32:48 -05:00

6 lines
174 B
Python

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