文件名称:fsevent:轻松处理Google Cloud Functions Go Runtime上的Cloud Firestore事件
文件大小:11KB
文件格式:ZIP
更新时间:2024-03-01 11:36:25
go gcp gcp-cloud-functions firestore Go
fsevent 轻松处理Google Cloud Functions Go Runtime上的Cloud Firestore事件。 描述 由Cloud Firestore触发的Cloud Functions事件处理起来有些复杂。 GCP文档: 将fsevent接收为事件,并且可以对Cloud Firestore使用相同的类型定义。 产品特点 获取事件类型TypeCreate TypeUpdate或TypeDelete 在事件中反映值以构造您为firestore定义的结构 安装 最低Go版本:Go 1.11 使用安装和更新: $ go get -u github.com/ya5u/fsevent 用法 示例云功能代码如下 package handler import ( "context" "time" "github.com/ya5u/fsevent" ) // FsD
【文件预览】:
fsevent-master
----.gitignore(269B)
----go.mod(111B)
----value.go(1KB)
----LICENSE(1KB)
----set_reflect.go(9KB)
----go.sum(7KB)
----README.md(2KB)
----fsevent.go(726B)
----cmd()
--------fsevent()
----value_test.go(7KB)