暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

functions.go 899B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package PACKAGE
  2. // Welcome to Cloud Functions for Firebase for Golang!
  3. // To get started, uncomment the below code or create your own.
  4. // Deploy with `firebase deploy`
  5. /*
  6. import (
  7. "context"
  8. "fmt"
  9. "github.com/FirebaseExtended/firebase-functions-go/https"
  10. "github.com/FirebaseExtended/firebase-functions-go/pubsub"
  11. "github.com/FirebaseExtended/firebase-functions-go/runwith"
  12. )
  13. var HelloWorld = https.Function{
  14. RunWith: https.Options{
  15. AvailableMemoryMB: 256,
  16. },
  17. Callback: func(w https.ResponseWriter, req *https.Request) {
  18. fmt.Println("Hello, world!")
  19. fmt.Fprintf(w, "Hello, world!\n")
  20. },
  21. }
  22. var PubSubFunction = pubsub.Function{
  23. EventType: pubsub.MessagePublished,
  24. Topic: "topic",
  25. RunWith: runwith.Options{
  26. AvailableMemoryMB: 256,
  27. },
  28. Callback: func(ctx context.Context, message pubsub.Message) error {
  29. fmt.Printf("Got Pub/Sub event %+v", message)
  30. return nil
  31. },
  32. }
  33. */