package sms import ( "context" ) type Service interface { Send(ctx context.Context, phone, msg string) error } // todo实现发短信