This commit is contained in:
2021-04-12 16:38:40 +08:00
parent 779ec7e8d0
commit c316ef0202
8 changed files with 195 additions and 91 deletions
+8
View File
@@ -95,6 +95,14 @@ class Gii
$task = new GiiMiddleware();
$task->setInput($this->input);
return $task->generate();
case 'rpc-client':
$task = new GiiRpcClient();
$task->setInput($this->input);
return $task->generate();
case 'rpc-service':
$task = new GiiRpcService();
$task->setInput($this->input);
return $task->generate();
default:
return $this->getModel($make, $input);
}