xenu_nntp/lib/nntp/tiny/newsgroup.py
2024-11-09 22:30:23 -05:00

6 lines
168 B
Python

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