From 20009ce390a37e89474a32b70d1cf93d5c214213 Mon Sep 17 00:00:00 2001 From: eweziyi Date: Fri, 17 Jan 2025 13:28:06 +0800 Subject: [PATCH] Reorder imports --- plugins/turing/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/turing/config/config.go b/plugins/turing/config/config.go index d9917e5..d55b82d 100644 --- a/plugins/turing/config/config.go +++ b/plugins/turing/config/config.go @@ -2,11 +2,11 @@ package config import ( "fmt" - common_mq_config "github.com/caraml-dev/xp/common/messagequeue" "sync" "github.com/caraml-dev/mlp/api/pkg/instrumentation/newrelic" "github.com/caraml-dev/mlp/api/pkg/instrumentation/sentry" + common_mq_config "github.com/caraml-dev/xp/common/messagequeue" "github.com/caraml-dev/xp/treatment-service/config" "github.com/go-playground/validator/v10" )