<?php
namespace AroundElementor\Modules\Brands;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
use AroundElementor\Base\Module_Base;
class Module extends Module_Base {
public function get_widgets() {
return [
'Brands'
];
}
public function get_name() {
return 'ar-brands';
}
}