Libation/FileManager/UNTESTED/AudibleApiStorage.cs
Robert McRackan 2e4a97fde7 4.0 prep:
move IdentityTokens data to new AccountsSettings.json file
2020-08-06 14:01:12 -04:00

11 lines
260 B
C#

using System.IO;
namespace FileManager
{
public static class AudibleApiStorage
{
// not customizable. don't move to config
public static string AccountsSettingsFile => Path.Combine(Configuration.Instance.LibationFiles, "AccountsSettings.json");
}
}