Import openzeppelin contracts in Golang

Hi Everyone!
I am writing an ERC-1155 smart contract and planning to write a Go-lang script basically with goethereum to deploy it on moonbeam,
I am using openzeppelin wizard to create a base for the smart contract,
My question is how do I import the openzeppelin utilities in Go-lang, one way is to just clone everything which is for sure not a good idea :neutral_face:, I am looking for something similar @openzeppelin/contracts node module.

We don't distribute anything for Go. You can use a Git submodule.

1 Like

@frangio i am looking for same i have a contract created in node where i am using import statement like
import "@openzeppelin/contracts/proxy/Proxy.sol";

i want to create abi through golang i am not able to load @openzeppelin/contracts/proxy/Proxy.sol
if i have everything into a folder and use path like
import "../../openzeppline/contracts/Proxy/Proxy.sol" then its working
do you have any idea related to this ?