WeChatFerry/clients/go
2023-07-28 14:39:16 +08:00
..
proto go client update 2023-07-28 13:49:26 +08:00
wcf go client update 2023-07-28 14:39:16 +08:00
go.mod go client update 2023-07-28 13:49:26 +08:00
LICENSE Refactoring 2023-07-15 09:46:40 +08:00
README.md Refactoring 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())
}