2024-02-08 03:48:59 -06:00
|
|
|
// Copyright (c) The OpenTofu Authors
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
2023-05-02 10:33:06 -05:00
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2021-02-05 14:40:58 -06:00
|
|
|
package plugin6
|
|
|
|
|
|
|
|
// plugin6 builds on types in package plugin to include support for plugin
|
2023-12-13 06:18:43 -06:00
|
|
|
// protocol v6. The main gRPC functions use by tofu (and initialized in
|
2021-02-05 14:40:58 -06:00
|
|
|
// init.go), such as Serve, are in the plugin package. The version of those
|
|
|
|
// functions in this package are used by various mocks and in tests.
|
|
|
|
|
|
|
|
// When provider protocol v5 is deprecated, some functions may need to be moved
|
2024-08-29 12:20:33 -05:00
|
|
|
// here, or the existing functions updated, before removing the plugin package.
|