mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-08-07 06:37:44 +02:00
6 lines
78 B
PHP
6 lines
78 B
PHP
<?php
|
|
interface IAuthModule {
|
|
function authenticate($login, $password);
|
|
}
|
|
?>
|