-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
37 lines (31 loc) · 812 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package main
import (
"context"
"log"
"net/http"
"cloud.google.com/go/firestore"
)
// @title AVA API
// @version 1.0
// @description Serice for managing hotel orders
// @termsOfService http://swagger.io/terms/
// @contact.name Zarul Zakuan
// @contact.email zarulzakuan@gmail.com
// @license.name Apache 2.0
// @license.url http://www.apache.org/licenses/LICENSE-2.0.html
// @host localhost:8080
// @BasePath /
func main() {
router := NewRouter()
log.Println("Running server...")
log.Fatal(http.ListenAndServe(":8080", router))
}
func createClient(ctx context.Context) *firestore.Client {
// Sets your Google Cloud Platform project ID.
projectID := "avab011"
client, err := firestore.NewClient(ctx, projectID)
if err != nil {
log.Fatalf("Failed to create client: %v", err)
}
return client
}