1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-25 11:57:42 +02:00
ttrss/classes/iauthmodule.php

5 lines
115 B
PHP
Raw Normal View History

<?php
interface IAuthModule {
function authenticate($login, $password); // + optional third parameter: $service
}