mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
8 lines
105 B
PHP
8 lines
105 B
PHP
<?php
|
|
|
|
namespace Routing;
|
|
|
|
interface HandlerResolverInterface
|
|
{
|
|
public function resolve($handler);
|
|
}
|