You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: daprdocs/content/en/go-sdk-contributing/go-contributing.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,12 +12,12 @@ When contributing to the [Go SDK](https://github.com/dapr/go-sdk) the following
12
12
13
13
The `examples` directory contains code samples for users to run to try out specific functionality of the various Go SDK packages and extensions. When writing new and updated samples keep in mind:
14
14
15
-
- All examples should be runnable on Windows, Linux, and MacOS. While Go code is consistent among operating systems, any pre/post example commands should provide options through [codetabs]({{< ref "contributing-docs.md#tabbed-content" >}})
15
+
- All examples should be runnable on Windows, Linux, and MacOS. While Go code is consistent among operating systems, any pre/post example commands should provide options through [tabpane]({{% ref "contributing-docs.md#tabbed-content" %}})
16
16
- Contain steps to download/install any required pre-requisites. Someone coming in with a fresh OS install should be able to start on the example and complete it without an error. Links to external download pages are fine.
17
17
18
18
## Docs
19
19
20
20
The `daprdocs` directory contains the markdown files that are rendered into the [Dapr Docs](https://docs.dapr.io) website. When the documentation website is built this repo is cloned and configured so that its contents are rendered with the docs content. When writing docs keep in mind:
21
21
22
-
- All rules in the [docs guide]({{< ref contributing-docs.md >}}) should be followed in addition to these.
22
+
- All rules in the [docs guide]({{% ref contributing-docs.md %}}) should be followed in addition to these.
23
23
- All files and directories should be prefixed with `go-` to ensure all file/directory names are globally unique across all Dapr documentation.
Then compose your application that will use the workflow you've created. [Refer to the How-To: Author workflows guide]({{< ref howto-author-workflow.md >}}) for a full walk-through.
372
+
Then compose your application that will use the workflow you've created. [Refer to the How-To: Author workflows guide]({{% ref howto-author-workflow.md %}}) for a full walk-through.
373
373
374
374
Try out the [Go SDK workflow example.](https://github.com/dapr/go-sdk/blob/main/examples/workflow)
375
375
@@ -501,7 +501,7 @@ in := &dapr.InvokeBindingRequest{
501
501
out, err:= client.InvokeBinding(ctx, in)
502
502
```
503
503
504
-
For a full guide on output bindings, visit [How-To: Use bindings]({{< ref howto-bindings.md >}}).
504
+
For a full guide on output bindings, visit [How-To: Use bindings]({{% ref howto-bindings.md %}}).
505
505
506
506
### Actors
507
507
@@ -563,7 +563,7 @@ func main() {
563
563
}
564
564
```
565
565
566
-
For a full guide on actors, visit [the Actors building block documentation]({{< ref actors >}}).
566
+
For a full guide on actors, visit [the Actors building block documentation]({{% ref actors %}}).
567
567
568
568
### Secret Management
569
569
@@ -601,7 +601,7 @@ func main() {
601
601
```
602
602
603
603
604
-
For a full guide on secrets, visit [How-To: Retrieve secrets]({{< ref howto-secrets.md >}}).
604
+
For a full guide on secrets, visit [How-To: Retrieve secrets]({{% ref howto-secrets.md %}}).
605
605
606
606
### Distributed Lock
607
607
@@ -636,7 +636,7 @@ func main() {
636
636
}
637
637
```
638
638
639
-
For a full guide on distributed lock, visit [How-To: Use a lock]({{< ref howto-use-distributed-lock.md >}}).
639
+
For a full guide on distributed lock, visit [How-To: Use a lock]({{% ref howto-use-distributed-lock.md %}}).
640
640
641
641
### Configuration
642
642
@@ -667,7 +667,7 @@ go func() {
667
667
}()
668
668
```
669
669
670
-
For a full guide on configuration, visit [How-To: Manage configuration from a store]({{< ref howto-manage-configuration.md >}}).
670
+
For a full guide on configuration, visit [How-To: Manage configuration from a store]({{% ref howto-manage-configuration.md %}}).
Copy file name to clipboardExpand all lines: daprdocs/content/en/go-sdk-docs/go-service/_index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,5 +7,5 @@ description: How to get up and running with the Dapr Service (Callback) SDK for
7
7
no_list: true
8
8
---
9
9
In addition to this Dapr API client, Dapr Go SDK also provides service package to bootstrap your Dapr callback services. These services can be developed in either gRPC or HTTP:
0 commit comments