From b5b588134e18849b773360a389df834dec80a8fa Mon Sep 17 00:00:00 2001 From: Bamboo-King Date: Sat, 25 Jan 2025 12:05:33 +0800 Subject: [PATCH] Update main.py --- rsshub/blueprints/main.py | 10 ++++++++++ 1 file changed, 10 insertions(+) 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)