golang ddp server:用Golang编写的DDP服务器 源码
Go语言编写的DDP服务器 用法示例 package main import ( "github.com/krishamoud/golang-ddp-server" ) func main() { s := server.New() s.Method("hello", handler) s.Listen(":8080") } func handler(ctx server.MethodContext) { ctx.SendResult("Hello, world!") ctx.SendUpdated() } 去做 测试 袜子支持
下载地址
用户评论