From 46c3c97e63c901aab0bbd86f3540746a0f041487 Mon Sep 17 00:00:00 2001 From: Slawomir Koszewski Date: Wed, 4 Feb 2026 21:39:56 +0100 Subject: [PATCH] Refactor import statements in create-app-and-sp and delete-app-and-sp scripts to use sk-az-tools/graph --- bin/create-app-and-sp.mjs | 2 +- bin/delete-app-and-sp.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/create-app-and-sp.mjs b/bin/create-app-and-sp.mjs index e1d1a65..8af8af9 100644 --- a/bin/create-app-and-sp.mjs +++ b/bin/create-app-and-sp.mjs @@ -7,7 +7,7 @@ import { getApp, getGraphClient, getServicePrincipal, -} from "../src/graph.js"; +} from "sk-az-tools/graph"; import { parseArgs } from "node:util"; async function usage() { diff --git a/bin/delete-app-and-sp.mjs b/bin/delete-app-and-sp.mjs index 5094e15..d8b95c2 100644 --- a/bin/delete-app-and-sp.mjs +++ b/bin/delete-app-and-sp.mjs @@ -7,7 +7,7 @@ import { getApp, getGraphClient, getServicePrincipal, -} from "../src/graph.js"; +} from "sk-az-tools/graph"; import { parseArgs } from "node:util"; async function usage() {