Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit c6e193a

Browse files
committed
add missing labels
1 parent a565983 commit c6e193a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/pages/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ Resources are the building blocks of your apps. They're the databases, queues, b
3838
3939
<CodeGroup>
4040
41-
```javascript
41+
```javascript {{ label:"services/example.js" }}
4242
import { bucket } from '@nitric/sdk'
4343

4444
const profiles = bucket('profiles').allow('read', 'write', 'delete')
4545
```
4646

47-
```python
47+
```python {{ label:"services/example.py" }}
4848
from nitric.resources import bucket
4949
from nitric.application import Nitric
5050

@@ -53,7 +53,7 @@ profiles = bucket('profiles').allow('read', 'write', 'delete')
5353
Nitric.run()
5454
```
5555

56-
```go
56+
```go {{ label:"services/example/main.go" }}
5757
import (
5858
"fmt"
5959

@@ -69,7 +69,7 @@ func main() {
6969
}
7070
```
7171

72-
```dart
72+
```dart {{ label:"services/example.dart" }}
7373
import 'package:nitric_sdk/nitric.dart';
7474
7575
final profiles = Nitric.bucket("profiles").allow([

0 commit comments

Comments
 (0)