| 1234567891011121314151617181920212223242526272829303132 |
- package providers
- import "git.wenlab.co/joe/beaconfire"
- // aliyun SMS support
- const (
- ALIYUN_NAME = "aliyun"
- )
- type OptionsAliyun struct {
- }
- type aliyun struct {
- opt *OptionsAliyun
- }
- var _ beaconfire.BeaconFire = &aliyun{}
- func NewAliyun(opt *OptionsAliyun) *aliyun {
- return &aliyun{
- opt: opt,
- }
- }
- func (a *aliyun) Name() string {
- return ALIYUN_NAME
- }
- func (a *aliyun) Send(bp *beaconfire.BeaconParam) error {
- return nil
- }
|