From 650dc3384c5fb555b4466558b4557214714b503f Mon Sep 17 00:00:00 2001 From: "as2252258@163.com" Date: Mon, 19 Apr 2021 02:10:57 +0800 Subject: [PATCH] modify --- System/Snowflake.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/System/Snowflake.php b/System/Snowflake.php index 55c1ec5f..fd886db4 100644 --- a/System/Snowflake.php +++ b/System/Snowflake.php @@ -25,6 +25,9 @@ defined('DB_ERROR_BUSY') or define('DB_ERROR_BUSY', 'The database is busy. Pleas defined('SELECT_IS_NULL') or define('SELECT_IS_NULL', 'Query data does not exist, please check the relevant conditions.'); defined('PARAMS_IS_NULL') or define('PARAMS_IS_NULL', 'Required items cannot be empty, please add.'); defined('CONTROLLER_PATH') or define('CONTROLLER_PATH', APP_PATH . 'app/Http/Controllers/'); +defined('CRONTAB_PATH') or define('CRONTAB_PATH', APP_PATH . 'app/Crontab/'); +defined('CLIENT_PATH') or define('CLIENT_PATH', APP_PATH . 'app/Client/'); +defined('TASK_PATH') or define('TASK_PATH', APP_PATH . 'app/Client/'); defined('KAFKA_PATH') or define('KAFKA_PATH', APP_PATH . 'app/Kafka/'); defined('RPC_SERVICE_PATH') or define('RPC_SERVICE_PATH', APP_PATH . 'app/Http/Rpc/'); defined('RPC_CLIENT_PATH') or define('RPC_CLIENT_PATH', APP_PATH . 'app/Client/Rpc/');