Fix Go module name (#790) (#791)

This commit is contained in:
Lucas Tesson 2023-12-06 11:48:14 +01:00 committed by GitHub
parent 8f9e2ab413
commit cc1c74fc8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/Telmate/terraform-provider-proxmox
module github.com/Telmate/terraform-provider-proxmox/v2
go 1.19

View file

@ -3,7 +3,7 @@ package main
import (
"flag"
"github.com/Telmate/terraform-provider-proxmox/proxmox"
"github.com/Telmate/terraform-provider-proxmox/v2/proxmox"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
)