Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix broken links in readmes #397

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions example/rust/README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,11 @@ _他言語バージョンもあります_:[English](README.md)
- Momento オーストークンが必要です。トークン発行は[Momento CLI](https://github.com/momentohq/momento-cli)から行えます。

```bash
cargo build

# SDKコード例を実行する
MOMENTO_AUTH_TOKEN=<YOUR AUTH TOKEN> ./target/debug/rust
MOMENTO_API_KEY=<YOUR API KEY> cargo run --bin=cache
```

SDK コード例: [main.rs](src/main.rs)
SDK コード例: [cache.rs](src/bin/cache.rs)

## SDK を自身のプロジェクトで使用する

Expand Down
4 changes: 2 additions & 2 deletions example/rust/README.template.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This example demonstrates a basic set and get from a cache.
MOMENTO_API_KEY=<YOUR API KEY> cargo run --bin=cache
```

Example Code: [cache.rs](src/cache.rs)
Example Code: [cache.rs](src/bin/cache.rs)

## Running the Topics Example

Expand All @@ -33,6 +33,6 @@ This example demonstrates subscribing to and publishing to a Topic.
MOMENTO_API_KEY=<YOUR API KEY> cargo run --bin=topics
```

Example Code: [topics.rs](src/topics.rs)
Example Code: [topics.rs](src/bin/topics.rs)

{{ ossFooter }}
Loading