2014-09-13 19:45:56 -05:00
|
|
|
package module
|
|
|
|
|
|
|
|
// Module represents the metadata for a single module.
|
|
|
|
type Module struct {
|
2017-10-05 13:46:20 -05:00
|
|
|
Name string
|
|
|
|
Source string
|
|
|
|
Version string
|
2017-10-12 12:43:04 -05:00
|
|
|
Providers map[string]string
|
2014-09-13 19:45:56 -05:00
|
|
|
}
|