mirror of
https://github.com/silenceper/wechat.git
synced 2026-02-04 21:02:25 +08:00
16 lines
246 B
Go
16 lines
246 B
Go
package tcb
|
|
|
|
import "github.com/silenceper/wechat/v2/miniprogram/context"
|
|
|
|
//Tcb Tencent Cloud Base
|
|
type Tcb struct {
|
|
*context.Context
|
|
}
|
|
|
|
//NewTcb new Tencent Cloud Base
|
|
func NewTcb(context *context.Context) *Tcb {
|
|
return &Tcb{
|
|
context,
|
|
}
|
|
}
|