This commit is contained in:
2020-09-02 11:52:42 +08:00
parent e0e93746f7
commit 764ec41262
+4 -3
View File
@@ -34,11 +34,12 @@ class Application extends BaseApplication
*/
public function init()
{
/** @var Server $https */
$https = $this->make(Server::class, Server::class);
$application = Snowflake::get();
$https = $application->server;
$https->initCore(Config::get('servers', true));
$process = Snowflake::get()->processes;
$process = $application->processes;
$process->initCore();
}