1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-01-24 03:50:33 +00:00
Arsse/lib/REST/Handler.php

9 lines
174 B
PHP
Raw Normal View History

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