WeChatFerry/clients/go/README.md
2023-07-15 09:46:40 +08:00

23 lines
275 B
Markdown
Vendored

# WeChatFerry-go
[WeChatFerry](https://github.com/lich0821/WeChatFerry) golang client
## Usage
```go
package main
import (
"github.com/danbai225/WeChatFerry-go/wcf"
)
func main() {
c, err := wcf.NewWCF("")
if err != nil {
panic(err)
}
println(c.IsLogin())
}
```