From c01b2081aae00e6872899e566d9c88fa2a64ee80 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Thu, 16 Oct 2025 19:21:18 +0800 Subject: [PATCH] Expand using directives in PublicAPIInstance.cs Added multiple namespaces to the using directives in PublicAPIInstance.cs, including System.Collections, System.Linq, System.Threading, and others. This change enables access to a broader range of functionality required by the file. --- Flow.Launcher/PublicAPIInstance.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Flow.Launcher/PublicAPIInstance.cs b/Flow.Launcher/PublicAPIInstance.cs index 9205864ee..ccd41c909 100644 --- a/Flow.Launcher/PublicAPIInstance.cs +++ b/Flow.Launcher/PublicAPIInstance.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Collections.ObjectModel; @@ -6,6 +6,7 @@ using System.Collections.Specialized; using System.ComponentModel; using System.Diagnostics; using System.IO; +using System.Linq; using System.Net; using System.Runtime.CompilerServices; using System.Runtime.InteropServices;