mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 10:25:35 +08:00
20 lines
333 B
PHP
20 lines
333 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class siso_task{
|
||
|
||
function post_install(){
|
||
kernel::single('base_initial', 'siso')->init();
|
||
}
|
||
|
||
|
||
function install_options(){
|
||
return array(
|
||
|
||
);
|
||
}
|
||
}
|