Heimdall/app/EnhancedApps.php

13 lines
149 B
PHP
Raw Normal View History

<?php
namespace App;
2018-10-19 14:10:05 +00:00
2018-10-20 23:17:36 +00:00
interface EnhancedApps
2018-10-19 14:10:05 +00:00
{
2018-10-21 12:32:58 +00:00
public function test();
2018-10-21 11:39:12 +00:00
public function livestats();
2018-10-19 14:10:05 +00:00
public function url($endpoint);
}