aboutsummaryrefslogtreecommitdiffhomepage
path: root/main.go
diff options
context:
space:
mode:
authorAlexandre Garand <alexandre.garand@fretlink.com>2019-06-28 11:23:27 +0200
committerAlexandre Garand <alexandre.garand@fretlink.com>2019-06-28 11:23:27 +0200
commite17f219ab8ff104f73e3c0f7515a7bb437b03d56 (patch)
treede70594e9645a382a3a4cb4addec966e96bf71eb /main.go
parente2966ba7a0ba5e3f87787f0a276ca5f7f6b21bd7 (diff)
downloadterraform-provider-mailgun-e17f219ab8ff104f73e3c0f7515a7bb437b03d56.tar.gz
terraform-provider-mailgun-e17f219ab8ff104f73e3c0f7515a7bb437b03d56.tar.zst
terraform-provider-mailgun-e17f219ab8ff104f73e3c0f7515a7bb437b03d56.zip
add provider without ressources and makefile
Diffstat (limited to 'main.go')
-rw-r--r--main.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..debeaa0
--- /dev/null
+++ b/main.go
@@ -0,0 +1,11 @@
1package main
2
3import (
4 "github.com/alexandreFre/terraform-provider-mailgun/mailgun"
5 "github.com/hashicorp/terraform/plugin"
6)
7
8func main() {
9 plugin.Serve(&plugin.ServeOpts{
10 ProviderFunc: mailgun.Provider})
11}