Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# CODEOWNERS info: https://help.github.com/en/articles/about-code-owners
# Owners are automatically requested for review for PRs that changes code
# that they own.
* @hypermodeinc/database
* @hypermodeinc/maintainers
Comment thread
matthewmcneely marked this conversation as resolved.
Outdated
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ fmt.Printf("%s\n", resp.Json)
Dgraph v25 supports creating namespaces using grpc API. You can create one using the dgo client.

```go
_, err := client.CreateNamespace(context.TODO())
nsID, err := client.CreateNamespace(context.TODO())
// Handle error
```

Expand All @@ -306,7 +306,7 @@ _, err := client.CreateNamespace(context.TODO())
To drop a namespace:

```go
err := client.DropNamespace(context.TODO())
err := client.DropNamespace(context.TODO(), nsID)
// Handle error
```

Expand Down