rublon-ssh/PAM/ssh/include/rublon/method/OTP.hpp
2023-07-21 14:41:20 +02:00

15 lines
283 B
C++

#pragma once
#include <tl/expected.hpp>
#include <rublon/authentication_step_interface.hpp>
namespace rublon::method {
class OTP : public rublon::AuthenticationStep< OTP > {
public:
const char * name = "Select 'One Time Password' method";
};
} // namespace rublon::method