This commit is contained in:
barelyprofessional
2025-12-25 02:30:10 -06:00
parent 6b86b3ae6c
commit 7aefa17f47
4 changed files with 599 additions and 0 deletions

View File

@@ -459,6 +459,10 @@ public static class BuiltIn
public static string YouTubeApiKey = "YouTube.ApiKey";
[BuiltInSetting("Openrouter API key for hostess command", SettingValueType.Text, isSecret: true)]
public static string OpenrouterApiKey = "Openrouter.ApiKey";
[BuiltInSetting("API key for Zipline", SettingValueType.Text, isSecret: true)]
public static string ZiplineKey = "Zipline.Key";
[BuiltInSetting("Base URL for Zipline", SettingValueType.Text, defaultValue: "https://i.ddos.lgbt")]
public static string ZiplineUrl = "Zipline.Url";
}
}