| 1 |
<?php |
| 2 |
/** |
| 3 |
* All of our package actions to register. |
| 4 |
* |
| 5 |
* @package ForceRefresh |
| 6 |
*/ |
| 7 |
|
| 8 |
namespace JordanLeven\Plugins\ForceRefresh; |
| 9 |
|
| 10 |
use JordanLeven\Plugins\ForceRefresh\Services\Migration_Service; |
| 11 |
|
| 12 |
add_action( 'plugins_loaded', array( Migration_Service::class, 'run_pending' ) ); |
| 13 |
|
| 14 |
require_once __DIR__ . '/admin/actions-admin.php'; |
| 15 |
require_once __DIR__ . '/client/actions-client.php'; |
| 16 |
|