mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-01-15 00:51:43 +08:00
10 lines
176 B
PHP
10 lines
176 B
PHP
<?php namespace App;
|
|
|
|
use GuzzleHttp\Exception\GuzzleException;
|
|
use GuzzleHttp\Client;
|
|
|
|
interface SearchInterface
|
|
{
|
|
public function getResults($query, $providerdetails);
|
|
|
|
} |