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 output

The output the process produced

*/ public record ProcessResult(int exitCode, @NotNull String output) { }