From 7def873afa4fbf0b51d43a14352684ecd8b3b4a5 Mon Sep 17 00:00:00 2001 From: tammy-baylis-swi Date: Thu, 30 May 2024 15:01:11 -0700 Subject: [PATCH] Mv SettingManager to oboe --- .../settings.go => oboe/settings_manager.go} | 2 +- internal/settings/settings_test.go | 15 --------------- 2 files changed, 1 insertion(+), 16 deletions(-) rename internal/{settings/settings.go => oboe/settings_manager.go} (99%) delete mode 100644 internal/settings/settings_test.go diff --git a/internal/settings/settings.go b/internal/oboe/settings_manager.go similarity index 99% rename from internal/settings/settings.go rename to internal/oboe/settings_manager.go index 3fb6c8e2..854cb081 100644 --- a/internal/settings/settings.go +++ b/internal/oboe/settings_manager.go @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package settings +package oboe import ( "fmt" diff --git a/internal/settings/settings_test.go b/internal/settings/settings_test.go deleted file mode 100644 index 0f13cf88..00000000 --- a/internal/settings/settings_test.go +++ /dev/null @@ -1,15 +0,0 @@ -// © 2024 SolarWinds Worldwide, LLC. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package settings