10 lines
173 B
PHP
10 lines
173 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class Wiaas_Product {
|
||
|
|
|
||
|
|
public static function init() {
|
||
|
|
require_once dirname( __FILE__ ) . '/product/class-wiaas-product-category.php';
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
Wiaas_Product::init();
|