1
0
Fork 0
mirror of synced 2024-08-01 19:42:07 +12:00
appwrite/app/sdks/go/docs/examples/storage/get-file.md

25 lines
375 B
Markdown
Raw Normal View History

2020-01-29 03:22:13 +13:00
package main
import (
"fmt"
"github.com/appwrite/sdk-for-go"
)
func main() {
var client := appwrite.Client{}
client.SetProject("")
client.SetKey("")
2020-01-29 05:42:11 +13:00
var service := appwrite.Storage{
2020-01-29 03:22:13 +13:00
client: &client
}
2020-01-29 05:42:11 +13:00
var response, error := service.GetFile("[FILE_ID]")
if error != nil {
panic(error)
2020-01-29 03:22:13 +13:00
}
2020-01-29 05:42:11 +13:00
fmt.Println(response)
2020-01-29 03:22:13 +13:00
}