diff --git a/rsshub/blueprints/main.py b/rsshub/blueprints/main.py index d9a5aa7..3088ad4 100644 --- a/rsshub/blueprints/main.py +++ b/rsshub/blueprints/main.py @@ -3,6 +3,16 @@ from rsshub.extensions import cache bp = Blueprint('main', __name__) +@bp.route('/asmr/works////') +@bp.route('/asmr/works///') +@bp.route('/asmr/works//') +@bp.route('/asmr/works/') +@bp.route('/asmr/works') +def works(search='', order='create_date', subtitle=0, sort='desc'): + from rsshub.spiders.asmr.works import ctx + return render_template('main/atom.xml', **filter_content(ctx(search, order, subtitle, sort))) + + @bp.route('/word/') @bp.route('/') @cache.cached(timeout=3600)