mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-07 07:23:58 +09:00
12 lines
212 B
PHP
12 lines
212 B
PHP
<?php namespace App;
|
|
|
|
use GuzzleHttp\Exception\GuzzleException;
|
|
use GuzzleHttp\Client;
|
|
|
|
interface EnhancedApps
|
|
{
|
|
public function test();
|
|
public function livestats();
|
|
public function url($endpoint);
|
|
|
|
} |