ProcessImgService.java 258 B

12345678
  1. package cn.flea.chexnetmaster.service;
  2. import cn.flea.chexnetmaster.pojo.Result;
  3. import org.springframework.web.multipart.MultipartFile;
  4. public interface ProcessImgService {
  5. public Result processImg(MultipartFile img, String chexnetMasterImgApiUrl);
  6. }