peliprint/app/BlueprintFramework/Services/PlaceholderService/BlueprintPlaceholderService.php

12 lines
375 B
PHP
Raw Normal View History

<?php
namespace Pterodactyl\BlueprintFramework\Services\PlaceholderService;
class BlueprintPlaceholderService
{
public function version(): string { return "::v"; }
2024-06-11 16:21:55 -04:00
public function folder(): string { return base_path(); }
public function installed(): string { return "NOTINSTALLED"; }
public function api_url(): string { return "http://api.blueprint.zip:50000"; }
}