/* @Time : 2019-11-05 15:41 @Author : zr */ package short_msg import "video_course/model" type ShortMsg interface { SendVFCode(phone, code string, codeType model.VFCodeCodeTypeEnum) } func NewShortMsg() (shortMsg ShortMsg) { dao := NewShortMsgIyoogo() return dao }