forked from golang/hotime
17 lines
229 B
Go
17 lines
229 B
Go
|
package tcb
|
||
|
|
||
|
import "github.com/silenceper/wechat/context"
|
||
|
|
||
|
//Tcb Tencent Cloud Base
|
||
|
type Tcb struct{
|
||
|
*context.Context
|
||
|
}
|
||
|
|
||
|
//NewTcb new Tencent Cloud Base
|
||
|
func NewTcb(context *context.Context)*Tcb{
|
||
|
return &Tcb{
|
||
|
context,
|
||
|
}
|
||
|
}
|
||
|
|