MatrixService.java 291 Bytes
package com.ruoyi.service;

import com.ruoyi.web.response.MatrixResponse;

import java.io.IOException;

public interface MatrixService {

    MatrixResponse getMatrix();

    MatrixResponse getMatrixForUrl() throws IOException;

    MatrixResponse getMatrixForUrlPad() throws IOException;
}