From 15bf63fff928d8667ce8c490430d4c6f15f37768 Mon Sep 17 00:00:00 2001 From: OTSYULA Date: Mon, 2 Feb 2026 13:50:26 +0300 Subject: [PATCH] Fix import path casing for tablesdb package Tried using the Appwrite SDK for Golang but encountered an issue while importing TablesDB. The official Golang docs (https://pkg.go.dev/github.com/appwrite/sdk-for-go/tablesdb) actually allow for tablesdb while the Appwrite docs ask for TablesDB. --- src/routes/docs/quick-starts/go/+page.markdoc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/routes/docs/quick-starts/go/+page.markdoc b/src/routes/docs/quick-starts/go/+page.markdoc index b19b7d7954..c9fafcf32a 100644 --- a/src/routes/docs/quick-starts/go/+page.markdoc +++ b/src/routes/docs/quick-starts/go/+page.markdoc @@ -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" ) @@ -88,7 +88,7 @@ var ( appwriteClient client.Client todoDatabase *models.Database todoTable *models.Table - appwriteDatabases *tablesDB.TablesDB + appwriteDatabases *tablesdb.TablesDB ) func main() { @@ -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" @@ -285,7 +285,7 @@ var ( appwriteClient client.Client todoDatabase *models.Database todoTable *models.Table - tablesDB *tablesDB.TablesDB + tablesDB *tablesdb.TablesDB ) func main() { @@ -308,4 +308,4 @@ func main() { Run your project with `go run .` and view the response in your console. -{% /section %} \ No newline at end of file +{% /section %}