Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 275 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 275 Bytes

WeChatFerry-go

WeChatFerry golang client

Usage

package main

import (
	"github.com/danbai225/WeChatFerry-go/wcf"
)

func main() {
	c, err := wcf.NewWCF("")
	if err != nil {
		panic(err)
	}
	println(c.IsLogin())
}