mirror of
https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git
synced 2024-11-05 10:28:12 +00:00
11 lines
268 B
Go
11 lines
268 B
Go
package main // import "src.techknowlogick.com/terraform-provider-gitea"
|
|
|
|
import (
|
|
"code.gitea.io/terraform-provider-gitea/gitea"
|
|
"github.com/hashicorp/terraform-plugin-sdk/plugin"
|
|
)
|
|
|
|
func main() {
|
|
plugin.Serve(&plugin.ServeOpts{
|
|
ProviderFunc: gitea.Provider})
|
|
}
|