- 源码: xhadmincn/FastMovieAI (Apache 2.0) - 二开: Docker部署, Swoole改Select, route.php修复, 补update/VERSION - vendor/示例资源已gitignore
16 lines
242 B
PHP
16 lines
242 B
PHP
<?php
|
|
|
|
namespace plugin\article\api;
|
|
|
|
use plugin\control\expose\api\Control as ApiControl;
|
|
|
|
class Control
|
|
{
|
|
use ApiControl;
|
|
public function __construct()
|
|
{
|
|
$this->path = __DIR__;
|
|
$this->plugin = 'article';
|
|
}
|
|
}
|