Skip to content

Commit 17decc4

Browse files
fix go imports
1 parent f1724ab commit 17decc4

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

modus/sdk/go/collections.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The Modus Collection APIs allow you to add vector search within your functions.
1717
To begin, import the `collections` package from the SDK:
1818

1919
```go
20-
import github.com/hypermodeinc/modus/sdk/go/pkg/collections
20+
import "github.com/hypermodeinc/modus/sdk/go/pkg/collections"
2121
```
2222

2323
## Collections APIs

modus/sdk/go/console.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ captured and returned in the GraphQL response.
3434
To begin, import the `console` package from the SDK:
3535

3636
```go
37-
import github.com/hypermodeinc/modus/sdk/go/pkg/console
37+
import "github.com/hypermodeinc/modus/sdk/go/pkg/console"
3838
```
3939

4040
## Console APIs

modus/sdk/go/dgraph.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ database.
1818
To begin, import the `dgraph` package from the SDK:
1919

2020
```go
21-
import github.com/hypermodeinc/modus/sdk/go/pkg/dgraph
21+
import "github.com/hypermodeinc/modus/sdk/go/pkg/dgraph"
2222
```
2323

2424
## Dgraph APIs

modus/sdk/go/graphql.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ GraphQL endpoint.
1818
To begin, import the `graphql` package from the SDK:
1919

2020
```go
21-
import github.com/hypermodeinc/modus/sdk/go/pkg/graphql
21+
import "github.com/hypermodeinc/modus/sdk/go/pkg/graphql"
2222
```
2323

2424
## GraphQL APIs

modus/sdk/go/http.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ repository, and aren't visible or accessible from your functions code.
3939
To begin, import the `http` package from the SDK:
4040

4141
```go
42-
import github.com/hypermodeinc/modus/sdk/go/pkg/http
42+
import "github.com/hypermodeinc/modus/sdk/go/pkg/http"
4343
```
4444

4545
## HTTP APIs

modus/sdk/go/localtime.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ zone from your functions.
1818
To begin, import the `localtime` package from the SDK:
1919

2020
```go
21-
import github.com/hypermodeinc/modus/sdk/go/pkg/localtime
21+
import "github.com/hypermodeinc/modus/sdk/go/pkg/localtime"
2222
```
2323

2424
{/* <!-- vale Google.Headings = NO --> */}

modus/sdk/go/models.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ use it for any task that an AI model can perform.
3737
To begin, import the `models` package from the SDK:
3838

3939
```go
40-
import github.com/hypermodeinc/modus/sdk/go/pkg/models
40+
import "github.com/hypermodeinc/modus/sdk/go/pkg/models"
4141
```
4242

4343
You'll also need to import one or more packages for the model you are working
4444
with. For example:
4545

4646
```go
47-
import github.com/hypermodeinc/modus/sdk/go/pkg/models/openai
47+
import "github.com/hypermodeinc/modus/sdk/go/pkg/models/openai"
4848
```
4949

5050
If you would like to request a new model, please

modus/sdk/go/mysql.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ MySQL-compatible database platform.
1818
To begin, import the `mysql` package from the SDK:
1919

2020
```go
21-
import github.com/hypermodeinc/modus/sdk/go/pkg/mysql
21+
import "github.com/hypermodeinc/modus/sdk/go/pkg/mysql"
2222
```
2323

2424
## MySQL APIs

modus/sdk/go/neo4j.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ database.
1818
To begin, import the `neo4j` package from the SDK:
1919

2020
```go
21-
import github.com/hypermodeinc/modus/sdk/go/pkg/neo4j
21+
import "github.com/hypermodeinc/modus/sdk/go/pkg/neo4j"
2222
```
2323

2424
## Neo4j APIs

modus/sdk/go/postgresql.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ PostgreSQL-compatible database platform.
1818
To begin, import the `postgresql` package from the SDK:
1919

2020
```go
21-
import github.com/hypermodeinc/modus/sdk/go/pkg/postgresql
21+
import "github.com/hypermodeinc/modus/sdk/go/pkg/postgresql"
2222
```
2323

2424
## PostgreSQL APIs

0 commit comments

Comments
 (0)