mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-01-09 06:51:23 +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);
|
|
|
|
} |