Files
2026-04-28 15:13:50 +02:00

21 lines
375 B
PHP

<?php
namespace WsInpostMapOnCheckout\App;
if (!defined('ABSPATH')) exit;
use WsInpostMapOnCheckout\App\WsInpostActions;
use WsInpostMapOnCheckout\App\WSInpostSettings;
class WsInpostMap
{
public function run()
{
if (class_exists("woocommerce")) {
new WsInpostActions();
}
new Assets();
new WSInpostSettings();
}
}