package bn // VersionedAssetURL resolves an asset URL to a cache-versioned form. The // default is the identity function; the CMS host wires it to // internal/assets.VersionedURL at startup so plugin stylesheet links get // content-hash ?v= params. Guest-side (wasm) renders keep the identity // default — asset hashing is a host concern. // // This file is part of the cms→core template sync set (make sync-templates); // it must stay SDK-clean (no cms imports). var VersionedAssetURL = func(url string) string { return url }