From 67d20b93a44b995588701cf8c8cae6c759c51cf9 Mon Sep 17 00:00:00 2001 From: Bailey Date: Thu, 28 Sep 2023 06:15:28 -0500 Subject: [PATCH] [524] migrate garmin authentication to oauth --- src/Garmin/Auth/GarminOAuthService.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/Garmin/Auth/GarminOAuthService.cs diff --git a/src/Garmin/Auth/GarminOAuthService.cs b/src/Garmin/Auth/GarminOAuthService.cs new file mode 100644 index 000000000..133b82da6 --- /dev/null +++ b/src/Garmin/Auth/GarminOAuthService.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Garmin.Auth; + +public interface IGarminOAuthService +{ + +} + +public class GarminOAuthService +{ +}