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