diff options
Diffstat (limited to 'TwoStepsAuthenticator.TestApp/Program.cs')
-rw-r--r-- | TwoStepsAuthenticator.TestApp/Program.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/TwoStepsAuthenticator.TestApp/Program.cs b/TwoStepsAuthenticator.TestApp/Program.cs new file mode 100644 index 0000000..6aa9a3a --- /dev/null +++ b/TwoStepsAuthenticator.TestApp/Program.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TwoStepsAuthenticator.TestApp +{ + class Program + { + static void Main(string[] args) + { + var auth = new TwoStepsAuthenticator(); + auth.GetPinCode("JBSWY3DPEHPK3PXP", new DateTime(2013, 6, 12, 18, 0, 0)); + } + } +} |