chessh/lib/auth/password.ex

8 lines
144 B
Elixir
Raw Normal View History

2022-12-19 03:37:10 -05:00
defmodule Chessh.Auth.PasswordAuthenticator do
use Sshd.PasswordAuthenticator
def authenticate(_username, _password) do
true
end
end