We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 527895d + d3dfef6 commit 30f66dcCopy full SHA for 30f66dc
README.mkd
@@ -13,18 +13,18 @@ import (
13
"github.com/atlassian/go-sentry-api"
14
)
15
// Auth token is always required, secondary is endpoint and third is timeout defaults 60 seconds
16
-client := sentry.NewClient("yourauthtokengoeshere", nil, nil)
+client, _:= sentry.NewClient("yourauthtokengoeshere", nil, nil)
17
18
// Fetch your organization
19
org, err := client.GetOrganization("sentry")
20
if err != nil {
21
- panice(err)
+ panic(err)
22
}
23
24
// Fetch a project you already made
25
project, err := client.GetProject(org, "my-project-slug")
26
27
28
29
30
// Create a new Client DSN via the API
0 commit comments