diff options
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ | |||
1 | package main | ||
2 | |||
3 | import ( | ||
4 | "github.com/alexandreFre/terraform-provider-mailgun/mailgun" | ||
5 | "github.com/hashicorp/terraform/plugin" | ||
6 | ) | ||
7 | |||
8 | func main() { | ||
9 | plugin.Serve(&plugin.ServeOpts{ | ||
10 | ProviderFunc: mailgun.Provider}) | ||
11 | } | ||