Skip to content
Open
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
10 changes: 5 additions & 5 deletions src/routes/docs/quick-starts/go/+page.markdoc
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ package main
import (
"github.com/appwrite/sdk-for-go/appwrite"
"github.com/appwrite/sdk-for-go/client"
"github.com/appwrite/sdk-for-go/tablesDB"
"github.com/appwrite/sdk-for-go/tablesdb"
"github.com/appwrite/sdk-for-go/models"
"github.com/appwrite/sdk-for-go/query"
)
Expand All @@ -88,7 +88,7 @@ var (
appwriteClient client.Client
todoDatabase *models.Database
todoTable *models.Table
appwriteDatabases *tablesDB.TablesDB
appwriteDatabases *tablesdb.TablesDB
)

func main() {
Expand Down Expand Up @@ -275,7 +275,7 @@ import (

"github.com/appwrite/sdk-for-go/appwrite"
"github.com/appwrite/sdk-for-go/client"
"github.com/appwrite/sdk-for-go/tablesDB"
"github.com/appwrite/sdk-for-go/tablesdb"
"github.com/appwrite/sdk-for-go/id"
"github.com/appwrite/sdk-for-go/models"
"github.com/appwrite/sdk-for-go/query"
Expand All @@ -285,7 +285,7 @@ var (
appwriteClient client.Client
todoDatabase *models.Database
todoTable *models.Table
tablesDB *tablesDB.TablesDB
tablesDB *tablesdb.TablesDB
)

func main() {
Expand All @@ -308,4 +308,4 @@ func main() {

Run your project with `go run .` and view the response in your console.

{% /section %}
{% /section %}