Heimdall/app/EnhancedApps.php

12 lines
212 B
PHP
Raw Normal View History

2018-10-19 14:10:05 +00:00
<?php namespace App;
use GuzzleHttp\Exception\GuzzleException;
use GuzzleHttp\Client;
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-28 10:59:59 +00:00
public function url($endpoint);
2018-10-19 14:10:05 +00:00
}