summaryrefslogtreecommitdiff
path: root/SessionCmdlet.cs
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-05-18 17:01:02 +1000
committerJake Mannens <jake@asger.xyz>2026-05-19 03:29:47 +1000
commit07cfbfdb92890188cc0bed120acb1fcbf72d34db (patch)
tree7beaf4ccf29d3060ef10e1c293a5ad6620535256 /SessionCmdlet.cs
parentab46387d4d02e30b171a7c2fa07947b41ec691a0 (diff)
Added default global fallback session context
Diffstat (limited to 'SessionCmdlet.cs')
-rw-r--r--SessionCmdlet.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/SessionCmdlet.cs b/SessionCmdlet.cs
new file mode 100644
index 0000000..d823383
--- /dev/null
+++ b/SessionCmdlet.cs
@@ -0,0 +1,16 @@
+using HyperBooru.ApiClient;
+using System.Management.Automation;
+
+namespace HyperBooru.PowerShell;
+
+public abstract class SessionCmdlet : PSCmdlet {
+ [Parameter(Position = 0)]
+ public HBSession Session {
+ get => session ?? GlobalSession!;
+ set => session = value;
+ }
+
+ internal static HBSession? GlobalSession { get; set; }
+
+ private HBSession? session = null;
+}