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 %}