From 13143c29136cbba18cf520ccb5b950504e5cc3b3 Mon Sep 17 00:00:00 2001 From: zdm Date: Tue, 29 Oct 2024 13:43:14 +0200 Subject: [PATCH] chore: update docs --- resources/templates/api-schema.md.ejs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/templates/api-schema.md.ejs b/resources/templates/api-schema.md.ejs index ca8b9f873..7ff2b5029 100644 --- a/resources/templates/api-schema.md.ejs +++ b/resources/templates/api-schema.md.ejs @@ -13,7 +13,7 @@ ```javascript import Api from "@softvisio/core/api"; -const api = new Api( "<%- webSocketsUrl %>" ) +const api = new Api( "<%- webSocketsUrl %>" ); ``` #### **HTTP** @@ -22,7 +22,7 @@ const api = new Api( "<%- webSocketsUrl %>" ) ```javascript import Api from "@softvisio/core/api"; -const api = new Api( "<%- httpUrl %>" ) +const api = new Api( "<%- httpUrl %>" ); ```