2023-04-10 11:13:03 -04:00
|
|
|
<?php
|
|
|
|
|
2023-09-07 10:17:04 -04:00
|
|
|
namespace Pterodactyl\BlueprintFramework\Services\PlaceholderService;
|
2023-04-10 11:13:03 -04:00
|
|
|
|
|
|
|
class BlueprintPlaceholderService
|
|
|
|
{
|
2024-03-10 17:26:41 -04:00
|
|
|
public function version(): string { return "::v"; }
|
|
|
|
public function folder(): string { return "::f"; }
|
|
|
|
public function installed(): string { return "NOTINSTALLED"; }
|
2024-04-18 12:13:37 -04:00
|
|
|
public function api_url(): string { return "http://api.blueprint.zip:50000"; }
|
2023-04-10 11:13:03 -04:00
|
|
|
}
|