mirror of
https://github.com/silenceper/wechat.git
synced 2026-02-04 12:52:27 +08:00
* feat: Add Checkin - Implement 'getcheckindata' API * refactor: Change variable names * refactor: Change struct name
18 lines
253 B
Go
18 lines
253 B
Go
package checkin
|
|
|
|
import (
|
|
"github.com/silenceper/wechat/v2/work/context"
|
|
)
|
|
|
|
// Client 打卡接口实例
|
|
type Client struct {
|
|
*context.Context
|
|
}
|
|
|
|
// NewClient 初始化实例
|
|
func NewClient(ctx *context.Context) *Client {
|
|
return &Client{
|
|
ctx,
|
|
}
|
|
}
|