mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-13 13:35:54 +00:00
15 lines
280 B
PHP
15 lines
280 B
PHP
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
use React\Promise\PromiseInterface;
|
|
|
|
interface LoggerRepository
|
|
{
|
|
public function logSubdomain($authToken, $subdomain);
|
|
|
|
public function getLogs(): PromiseInterface;
|
|
|
|
public function getLogsBySubdomain($subdomain): PromiseInterface;
|
|
}
|