CRMEB/application/core/util/Template.php
2019-05-16 14:28:37 +08:00

25 lines
423 B
PHP

<?php
/**
* Created by CRMEB.
* Copyright (c) 2017~2019 http://www.crmeb.com All rights reserved.
* Author: liaofei <136327134@qq.com>
* Date: 2019/4/3 16:36
*/
namespace app\core\util;
use app\core\traits\LogicTrait;
/** 模版消息类
* Class Template
* @package app\core\util
*/
class Template
{
use LogicTrait;
protected $providers=[
'routine_two'=>ProgramTemplateService::class,
];
}