using Managing.Common; using Managing.Domain.Accounts; namespace Managing.Infrastructure.Tests; public static class PrivateKeys { public static Account GetAccount() { // TODO Never commit this return new Account { Exchange = Enums.TradingExchanges.GmxV2, Type = Enums.AccountType.Trader, Key = "", Secret = "" }; } }