X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0bd1c28bed9a0756c61037947d5a9dccd5066f00..a4ab52b4305023d8c679cc7c3b09361050d167b6:/doc/sdk/go/index.html.textile.liquid diff --git a/doc/sdk/go/index.html.textile.liquid b/doc/sdk/go/index.html.textile.liquid index 0e26369b38..58446a9eda 100644 --- a/doc/sdk/go/index.html.textile.liquid +++ b/doc/sdk/go/index.html.textile.liquid @@ -12,54 +12,14 @@ h3. Installation You don't need to install anything. Just import the client like this. The go tools will fetch the relevant code and dependencies for you. - -
import (
-	"git.curoverse.com/arvados.git/sdk/go/keepclient"
-	"git.curoverse.com/arvados.git/sdk/go/arvadosclient"
-)
-
-
+{% code 'example_sdk_go_imports' as go %} -h3. Examples +If you need pre-release client code, you can use the latest version from the repo by following "these instructions.":https://arvados.org/projects/arvados/wiki/Go#Using-Go-with-Arvados -Import the module. (We import the log module here too, so we can use it in the subsequent examples.) +h3. Example - -
import (
-	"git.curoverse.com/arvados.git/sdk/go/keepclient"
-	"git.curoverse.com/arvados.git/sdk/go/arvadosclient"
-	"log"
-)
-
-
+You can save this source as a .go file and run it: -Set up an API client user agent: +{% code 'example_sdk_go' as go %} - -
	arv, err := arvadosclient.MakeArvadosClient()
-	if err != nil {
-		log.Fatalf("Error setting up arvados client %s", err.Error())
-	}
-
-
- -Get the User object for the current user: - - -
	type user struct {
-		Uuid	     string `json:"uuid"`
-		FullName     int    `json:"full_name"`
-	}
-
-	var u user
-	err := arv.Call("GET", "users", "", "current", nil, &u)
-
-	if err != nil {
-		return err
-	}
-
-	log.Printf("Logged in as %s (uuid %s)", user.Uuid, user.FullName)
-
-
- -A few more usage examples can be found in the services/keepproxy and sdk/go/keepclient directories in the arvados source tree. +A few more usage examples can be found in the "services/keepproxy":https://arvados.org/projects/arvados/repository/revisions/master/show/services/keepproxy and "sdk/go/keepclient":https://arvados.org/projects/arvados/repository/revisions/master/show/sdk/go/keepclient directories in the arvados source tree.