mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
22 lines
395 B
PHP
22 lines
395 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
/**
|
||
* @Author: xueding@shopex.cn
|
||
* @Vsersion: 2022/10/24
|
||
* @Describe: 默认安装数据
|
||
*/
|
||
|
||
class monitor_task
|
||
{
|
||
|
||
public function post_install()
|
||
{
|
||
kernel::log('Initial monitor');
|
||
kernel::single('base_initial', 'monitor')->init();
|
||
}
|
||
}
|