aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/moe/nea/rbwrl/UnofficialBitwardenCliConfig.java
blob: c328be76646e81a0c70ae101e1fc31e10f2acc8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package moe.nea.rbwrl;

import net.runelite.client.config.Config;
import net.runelite.client.config.ConfigGroup;
import net.runelite.client.config.ConfigItem;

@ConfigGroup("unofficialbitwardencli")
public interface UnofficialBitwardenCliConfig extends Config
{
	@ConfigItem(
		keyName = "rbwBinary",
		name = "Binary Path",
		description = "Set the path to the rbw binary here, or leave it empty to default to \"rbw\"."
	)
	default String getBinaryPath()
	{
		return "rbw";
	}
}