package net.knarcraft.ffmpegconverter.container; import org.jetbrains.annotations.NotNull; /** * The result of running a process * * @param exitCode
The exit code the process exited with
* @param outputThe output the process produced
*/ public record ProcessResult(int exitCode, @NotNull String output) { }