CoolFace
Apppublic

sakthivikram/geo-location

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
SmsService.java14 linesDownload Raw Back to service
1package com.georeport.service;2 3/**4 * Interface for SMS service operations.5 */6public interface SmsService {7    /**8     * Send an SMS message9     * @param to Phone number to send the message to10     * @param message The message content11     */12    void sendSms(String to, String message);13}14