Skip to content

Commit

Permalink
use bold
Browse files Browse the repository at this point in the history
  • Loading branch information
sleipnir committed Sep 25, 2024
1 parent 935eeca commit 2869098
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ You can also check out the following gif for another example:

Once you have done the initial setup you can start developing your actors in several available languages. See below how easy it is to do this in some languages:

NodeJS
**NodeJS**

```js
import spawn, { ActorContext, Value } from '@eigr/spawn-sdk'
Expand All @@ -76,7 +76,7 @@ const setNameHandler = async (context: ActorContext<UserState>, payload: ChangeU
actor.addAction({ name: 'setName', payloadType: ChangeUserNamePayload }, setNameHandler)
```

Elixir
**Elixir**

```elixir
defmodule SpawnSdkExample.Actors.MyActor do
Expand All @@ -99,7 +99,7 @@ defmodule SpawnSdkExample.Actors.MyActor do
end
```

Java
**Java**
```java
package io.eigr.spawn.java.demo;

Expand Down Expand Up @@ -147,7 +147,7 @@ public final class JoeActor implements StatefulActor<State> {
}
```

Python
**Python**

```python
from domain.domain_pb2 import JoeState, Request
Expand All @@ -173,7 +173,7 @@ def set_language(request: Request, ctx: Context) -> Value:

```

Rust
**Rust**
```rust
use spawn_examples::domain::domain::{Reply, Request, State};
use spawn_rs::{value::Value, Context, Message};
Expand Down

0 comments on commit 2869098

Please sign in to comment.