Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## v0.17.0

* Fix doc examples with proper formatting
* Add support for the new `Backups` service

## v0.16.0

* Added ability to create columns and indexes synchronously while creating a table
Expand Down Expand Up @@ -66,4 +71,4 @@

## 0.3.0

* Add new push message parameters
* Add new push message parameters
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite)
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)

**This SDK is compatible with Appwrite server version 1.8.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-go/releases).**
**This SDK is compatible with Appwrite server version latest. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-go/releases).**

Appwrite is an open-source backend as a service server that abstracts and simplifies complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the Go SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)

Expand Down
4 changes: 4 additions & 0 deletions appwrite/appwrite.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"github.com/appwrite/sdk-for-go/client"
"github.com/appwrite/sdk-for-go/account"
"github.com/appwrite/sdk-for-go/avatars"
"github.com/appwrite/sdk-for-go/backups"
"github.com/appwrite/sdk-for-go/databases"
"github.com/appwrite/sdk-for-go/functions"
"github.com/appwrite/sdk-for-go/graphql"
Expand All @@ -26,6 +27,9 @@ func NewAccount(clt client.Client) *account.Account {
func NewAvatars(clt client.Client) *avatars.Avatars {
return avatars.New(clt)
}
func NewBackups(clt client.Client) *backups.Backups {
return backups.New(clt)
}
func NewDatabases(clt client.Client) *databases.Databases {
return databases.New(clt)
}
Expand Down
Loading