mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06:00
* Vendor Rancher Go library. * Implement Rancher Provider. Starting implementation taken from https://github.com/platanus/terraform-provider-rancher Commits from jidonoso@gmail.com and raphael.pinson@camptocamp.com
11 lines
131 B
Go
11 lines
131 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
_ "github.com/rancher/go-rancher/client"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("I have nothing to do...")
|
|
}
|