mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-14 09:34:03 -06:00
9 lines
139 B
Go
9 lines
139 B
Go
package module
|
|
|
|
// Module represents the metadata for a single module.
|
|
type Module struct {
|
|
Name string
|
|
Source string
|
|
Dir string
|
|
}
|