package service import ( "smpp-otp/internal/config" ) type OTPService interface { GenerateAndSendOTP(cfg config.Config, phoneNumber string) error }