1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-23 11:46:37 +02:00
ttrss/classes/iauthmodule.php
2012-12-27 15:14:44 +04:00

6 lines
78 B
PHP

<?php
interface IAuthModule {
function authenticate($login, $password);
}
?>