From 1edaf11148e9031617a815fb1a0961fb0b59879d Mon Sep 17 00:00:00 2001 From: Vaibhav Kaushal Date: Mon, 5 Feb 2024 10:11:47 +0000 Subject: [PATCH] internalize jsonobject --- client/client.go | 2 +- {typs => internal}/jsonObject/json_object.go | 0 models/barklog.go | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename {typs => internal}/jsonObject/json_object.go (100%) diff --git a/client/client.go b/client/client.go index f418c26..7fb3a37 100644 --- a/client/client.go +++ b/client/client.go @@ -3,10 +3,10 @@ package client import ( "context" "fmt" + "github.com/techrail/bark/internal/jsonObject" "github.com/techrail/bark/resources" "github.com/techrail/bark/services/dbLogWriter" "github.com/techrail/bark/services/ingestion" - "github.com/techrail/bark/typs/jsonObject" "github.com/techrail/bark/utils" "io" "log/slog" diff --git a/typs/jsonObject/json_object.go b/internal/jsonObject/json_object.go similarity index 100% rename from typs/jsonObject/json_object.go rename to internal/jsonObject/json_object.go diff --git a/models/barklog.go b/models/barklog.go index b95bf87..26244d7 100644 --- a/models/barklog.go +++ b/models/barklog.go @@ -4,7 +4,7 @@ import ( "context" "fmt" "github.com/techrail/bark/appRuntime" - "github.com/techrail/bark/typs/jsonObject" + "github.com/techrail/bark/internal/jsonObject" "strings" "time"