From 13586b10f080dbc8bf22cf791e569d4c8fe87a1b Mon Sep 17 00:00:00 2001 From: Mik-TF Date: Tue, 14 May 2024 11:20:17 -0400 Subject: [PATCH] manual, parsing devs go --- collections/developers/go/grid3_go_installation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/collections/developers/go/grid3_go_installation.md b/collections/developers/go/grid3_go_installation.md index c07008c..6ca7085 100644 --- a/collections/developers/go/grid3_go_installation.md +++ b/collections/developers/go/grid3_go_installation.md @@ -22,19 +22,19 @@ Make sure that you have at least Go 1.19 installed on your machine. ## Steps * Create a new directory - * ```bash + ```bash mkdir tf_go_client ``` * Change directory - * ```bash + ```bash cd tf_go_client ``` * Creates a **go.mod** file to track the code's dependencies - * ```bash + ```bash go mod init main ``` * Install the Grid3 Go Client - * ```bash + ```bash go get github.com/threefoldtech/tfgrid-sdk-go/grid-client ```