WeChatFerry/clients/go/README.md

23 lines
275 B
Markdown
Raw Permalink Normal View History

2023-04-29 10:00:48 +08:00
# 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())
}
```