From ad5418f3b126ab4bcf7bedd8ad197a9e1169c786 Mon Sep 17 00:00:00 2001 From: Snider Date: Sat, 14 Mar 2026 10:10:53 +0000 Subject: [PATCH] refactor(api): update import path from go-api to core/api MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Part of the polyglot merge — forge.lthn.ai/core/go-api is now forge.lthn.ai/core/api. Co-Authored-By: Virgil --- go.mod | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index e84eb74..1ab57b3 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module forge.lthn.ai/core/element-template go 1.26.0 require ( - forge.lthn.ai/core/go-api v0.1.0 + forge.lthn.ai/core/api v0.1.0 forge.lthn.ai/core/go-log v0.0.1 forge.lthn.ai/core/go-ws v0.1.3 ) diff --git a/main.go b/main.go index a5dca2a..34ca882 100644 --- a/main.go +++ b/main.go @@ -17,7 +17,7 @@ import ( "os/signal" "syscall" - api "forge.lthn.ai/core/go-api" + api "forge.lthn.ai/core/api" "forge.lthn.ai/core/go-log" "github.com/gin-gonic/gin" )