| 1234567891011121314151617181920212223242526272829303132 |
- package providers
- import "git.wenlab.co/joe/beaconfire"
- // aliyun SMS support
- const (
- BEACON_NAME_ALIYUN = "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 BEACON_NAME_ALIYUN
- }
- func (a *aliyun) Send(bp *beaconfire.BeaconMessage) error {
- return nil
- }
|