2024-02-08 04:48:59 -05:00
|
|
|
// Copyright (c) The OpenTofu Authors
|
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
2023-05-02 11:33:06 -04:00
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
|
2023-09-26 13:09:27 -04:00
|
|
|
// Package format contains helpers for formatting various OpenTofu
|
2024-09-09 07:51:39 -04:00
|
|
|
// structures for human-readable output.
|
2017-01-18 23:49:42 -05:00
|
|
|
//
|
2023-09-26 13:09:27 -04:00
|
|
|
// This package is used by the official OpenTofu CLI in formatting any
|
2017-01-18 23:49:42 -05:00
|
|
|
// output and is exported to encourage non-official frontends to mimic the
|
2023-09-26 13:09:27 -04:00
|
|
|
// output formatting as much as possible so that text formats of OpenTofu
|
2017-01-18 23:49:42 -05:00
|
|
|
// structures have a consistent look and feel.
|
|
|
|
|
package format
|