com.codingapi.springboot.framework.command.IExecutor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springboot-starter Show documentation
Show all versions of springboot-starter Show documentation
springboot-starter project for Spring Boot
package com.codingapi.springboot.framework.command;
import com.codingapi.springboot.framework.dto.response.Response;
public interface IExecutor {
interface Command {
R execute(C command);
}
interface Void {
R execute();
}
}