1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 17:12:41 +00:00
Arsse/lib/REST/Handler.php

9 lines
174 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
2017-03-28 04:12:12 +00:00
namespace JKingWeb\Arsse\REST;
interface Handler {
2017-08-29 14:50:31 +00:00
public function __construct();
public function dispatch(Request $req): Response;
}