15 lines
283 B
C++
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
|