add cls telegraph

This commit is contained in:
hillerliao
2021-08-21 10:02:44 +08:00
parent adfd9f8db6
commit becc97a49a
3 changed files with 43 additions and 1 deletions

View File

@@ -118,7 +118,12 @@ def xuangubao_xuangubao(type='', category=''):
@bp.route('/cls/subject/<string:category>')
def cls_subject(category=''):
from rsshub.spiders.cls.subject import ctx
return render_template('main/atom.xml', **filter_content(ctx(category)))
return render_template('main/atom.xml', **filter_content(ctx(category)))
@bp.route('/cls/telegraph/')
def cls_telegraph():
from rsshub.spiders.cls.telegraph import ctx
return render_template('main/atom.xml', **filter_content(ctx()))
@bp.route('/chaindd/column/<string:category>')
def chaindd_column(category=''):