package com.takensoft.ums.service;

import java.util.Map;

/**
 * @author  : 방선주
 * @since   : 2024.06.25
 *
 * UmsService - 문자 메시지 전송을 위한 서비스
 */

public interface UmsService {
    public Map<String, Object> save() throws Exception;

    public Map<String, Object> findAll() throws Exception;
}