mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-01-09 06:51:23 +08:00
13 lines
149 B
PHP
13 lines
149 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
interface EnhancedApps
|
|
{
|
|
public function test();
|
|
|
|
public function livestats();
|
|
|
|
public function url($endpoint);
|
|
}
|