1from plain.templates import register_template_global 2 3from .urls import get_asset_url 4 5 6@register_template_global 7def asset(url_path: str) -> str: 8 return get_asset_url(url_path)