Rename filehandler to handler

pull/137/head
ruibaby 2019-03-27 22:45:50 +08:00
parent 4f11942c9c
commit 29834a9932
7 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
package cc.ryanc.halo.filehandler;
package cc.ryanc.halo.handler.file;
import cc.ryanc.halo.exception.FileOperationException;
import cc.ryanc.halo.model.enums.AttachmentType;

View File

@ -1,4 +1,4 @@
package cc.ryanc.halo.filehandler;
package cc.ryanc.halo.handler.file;
import cc.ryanc.halo.config.properties.HaloProperties;
import cc.ryanc.halo.service.OptionService;

View File

@ -1,4 +1,4 @@
package cc.ryanc.halo.filehandler;
package cc.ryanc.halo.handler.file;
import cc.ryanc.halo.exception.FileOperationException;
import cc.ryanc.halo.model.entity.Attachment;

View File

@ -1,4 +1,4 @@
package cc.ryanc.halo.filehandler;
package cc.ryanc.halo.handler.file;
import cc.ryanc.halo.config.properties.HaloProperties;
import cc.ryanc.halo.exception.FileOperationException;

View File

@ -1,4 +1,4 @@
package cc.ryanc.halo.filehandler;
package cc.ryanc.halo.handler.file;
import cc.ryanc.halo.exception.FileOperationException;
import cc.ryanc.halo.model.enums.AttachmentType;
@ -28,7 +28,7 @@ import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Objects;
import static cc.ryanc.halo.filehandler.FileHandler.isImageType;
import static cc.ryanc.halo.handler.file.FileHandler.isImageType;
/**
* Qi niu yun file handler.

View File

@ -1,4 +1,4 @@
package cc.ryanc.halo.filehandler;
package cc.ryanc.halo.handler.file;
import cc.ryanc.halo.exception.FileOperationException;
import cc.ryanc.halo.model.enums.AttachmentType;

View File

@ -1,6 +1,6 @@
package cc.ryanc.halo.service.impl;
import cc.ryanc.halo.filehandler.FileHandlers;
import cc.ryanc.halo.handler.file.FileHandlers;
import cc.ryanc.halo.model.dto.AttachmentOutputDTO;
import cc.ryanc.halo.model.entity.Attachment;
import cc.ryanc.halo.model.enums.AttachmentType;