mirror of
https://github.com/pyrohost/pyrodactyl.git
synced 2026-04-05 19:51:59 +02:00
12 lines
226 B
PHP
12 lines
226 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Contracts\Daemon;
|
|
|
|
use Pterodactyl\Models\Node;
|
|
|
|
interface Daemon
|
|
{
|
|
public function getConfiguration(Node $node): array;
|
|
public function getAutoDeploy(Node $node, string $token): string;
|
|
}
|