Move SavedPlanBookmark to dedicated internal/cloud/cloudplan package

Having this sitting loose in `cloud` proved problematic because of circular
import dependencies. Putting it in a sub-package under cloud frees us up to
reference the type from places like `internal/backend`!
This commit is contained in:
Nick Fagerlund 2023-05-25 15:28:58 -07:00 committed by Sebastian Rivera
parent 717a36036d
commit df7a1c821a
3 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package cloud
package cloudplan
import (
"encoding/json"

View File

@ -1,7 +1,7 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package cloud
package cloudplan
import (
"path/filepath"