mirror of
https://github.com/terraform-docs/terraform-docs.git
synced 2026-03-27 04:48:33 +07:00
14 lines
147 B
Go
14 lines
147 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/segmentio/terraform-docs/cmd"
|
|
)
|
|
|
|
func main() {
|
|
if err := cmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|