mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-01-15 00:51:43 +08: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);
|
|
|
|
} |