summaryrefslogtreecommitdiff
path: root/CommandLineWrapperExample
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-01-10 00:19:26 +0800
committer魏曹先生 <1992414357@qq.com>2026-01-10 00:19:26 +0800
commitc7ed0578fcfa501ce68bb69678db2765ed75d721 (patch)
tree84c78d4acddfc83ee2fbbf292b0d65c3cc9c03eb /CommandLineWrapperExample
parent75f7578d784a4e209da4b29a80d27940197d8945 (diff)
Add code generator for workspace command extensions
Diffstat (limited to 'CommandLineWrapperExample')
-rw-r--r--CommandLineWrapperExample/Program.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/CommandLineWrapperExample/Program.cs b/CommandLineWrapperExample/Program.cs
index 64d4e80..1b67cb8 100644
--- a/CommandLineWrapperExample/Program.cs
+++ b/CommandLineWrapperExample/Program.cs
@@ -1,3 +1,5 @@
+using CommandLineWrapper;
+
internal class Program
{
private static string currentDirectory = "/.Temp/Current/";
@@ -18,6 +20,6 @@ internal class Program
var workspace = new JVCSWorkspace();
await workspace.InitializeAsync(current);
- await workspace.Login("catilgrass", "127.0.0.1");
+ await workspace.SheetList();
}
}