mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-21 20:20:34 +09:00
12 lines
215 B
PHP
12 lines
215 B
PHP
<?php namespace App;
|
|
|
|
use GuzzleHttp\Exception\GuzzleException;
|
|
use GuzzleHttp\Client;
|
|
|
|
interface EnhancedApps
|
|
{
|
|
public function test();
|
|
public function livestats();
|
|
public function apiUrl($endpoint);
|
|
|
|
} |