Files
WeChatFerry/clients/go
2023-07-28 14:39:16 +08:00
..
2023-07-28 13:49:26 +08:00
2023-07-28 14:39:16 +08:00
2023-07-28 13:49:26 +08:00
2023-07-15 09:46:40 +08:00
2023-07-15 09:46:40 +08:00

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())
}