blob: 0864102267c90f71d1f7bd5ad583dcd277c55f04 (
plain)
1
2
3
4
5
6
7
8
9
|
package com.keuin.crosslink.plugin.common.environ;
import com.keuin.crosslink.plugin.common.ProxyType;
import org.slf4j.Logger;
import java.nio.file.Path;
public record PluginEnvironment(ProxyType proxyType, Logger logger, Path pluginDataPath) {
}
|