mirror of
https://github.com/silenceper/wechat.git
synced 2026-02-04 12:52:27 +08:00
17 lines
367 B
Go
17 lines
367 B
Go
package express
|
|
|
|
import (
|
|
"github.com/silenceper/wechat/v2/miniprogram/context"
|
|
)
|
|
|
|
// Express 微信物流服务
|
|
// https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/industry/express/business/introduction.html
|
|
type Express struct {
|
|
*context.Context
|
|
}
|
|
|
|
// NewExpress init
|
|
func NewExpress(ctx *context.Context) *Express {
|
|
return &Express{ctx}
|
|
}
|