[vscode-spring-cli] Basic AI command support

This commit is contained in:
aboyko
2024-01-27 23:51:23 -05:00
parent 48fcde87e3
commit cebd63c697
7 changed files with 171 additions and 29 deletions

View File

@@ -0,0 +1,10 @@
import { Uri } from "vscode";
import { getTargetGuideMardown } from "./utils";
import { CLI } from "./extension";
export async function handleGuideApply(uri: Uri) {
if (!uri) {
uri = await getTargetGuideMardown();
}
return CLI.guideApply(uri);
}