aboutsummaryrefslogtreecommitdiff
path: root/Plugins/OAuth2ClientApplications/src/OAuth2ClientAppsEntryPoint.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-02-25 21:08:37 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2023-02-25 21:08:37 -0500
commit3bfc707c736e4be22aa8ab6e9ff72d9d20387687 (patch)
treeca644942ba446e28b69b35d197fd1ae9d2908df4 /Plugins/OAuth2ClientApplications/src/OAuth2ClientAppsEntryPoint.cs
parentead082ee3bd2160351348107308d329bc55e7c5d (diff)
Project meta + core features and upgrades
Diffstat (limited to 'Plugins/OAuth2ClientApplications/src/OAuth2ClientAppsEntryPoint.cs')
-rw-r--r--Plugins/OAuth2ClientApplications/src/OAuth2ClientAppsEntryPoint.cs18
1 files changed, 5 insertions, 13 deletions
diff --git a/Plugins/OAuth2ClientApplications/src/OAuth2ClientAppsEntryPoint.cs b/Plugins/OAuth2ClientApplications/src/OAuth2ClientAppsEntryPoint.cs
index def6a35..3390a77 100644
--- a/Plugins/OAuth2ClientApplications/src/OAuth2ClientAppsEntryPoint.cs
+++ b/Plugins/OAuth2ClientApplications/src/OAuth2ClientAppsEntryPoint.cs
@@ -1,5 +1,5 @@
/*
-* Copyright (c) 2022 Vaughn Nugent
+* Copyright (c) 2023 Vaughn Nugent
*
* Library: VNLib
* Package: OAuth2ClientApplications
@@ -23,7 +23,6 @@
*/
using System;
-using System.Collections.Generic;
using OAuth2ClientApplications.Endpoints;
@@ -38,18 +37,11 @@ namespace OAuth2ClientApplications
public override string PluginName => "OAuth2.ClientApps";
protected override void OnLoad()
- {
- try
- {
- //Route the applications endpoint
- this.Route<ApplicationEndpoint>();
+ {
+ //Route the applications endpoint
+ this.Route<ApplicationEndpoint>();
- Log.Information("Plugin Loaded");
- }
- catch (KeyNotFoundException kne)
- {
- Log.Error("Missing required configuration variables, {reason}", kne.Message);
- }
+ Log.Information("Plugin Loaded");
}
protected override void OnUnLoad()