wechaty/go-wechaty

View on GitHub
wechaty/accessory.go

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package wechaty

import (
  wechatypuppet "github.com/wechaty/go-wechaty/wechaty-puppet"
  _interface "github.com/wechaty/go-wechaty/wechaty/interface"
)

// Accessory ...
type Accessory struct {
  puppet wechatypuppet.IPuppetAbstract
  wechaty *Wechaty
}

// GetPuppet ...
func (a *Accessory) GetPuppet() wechatypuppet.IPuppetAbstract {
  return a.puppet
}

// GetWechaty ...
func (a *Accessory) GetWechaty() _interface.IWechaty {
  return a.wechaty
}