2
0
mirror of synced 2025-01-26 08:20:02 +00:00

25 lines
677 B
C#
Raw Normal View History

using CodexDistTestCore.Config;
using NUnit.Framework;
2023-04-11 16:43:53 +02:00
using System.Numerics;
using System.Text;
2023-04-10 14:00:12 +02:00
namespace CodexDistTestCore.Marketplace
2023-04-10 10:09:41 +02:00
{
public class MarketplaceController
{
private readonly TestLog log;
private readonly K8sManager k8sManager;
2023-04-11 12:06:33 +02:00
private readonly NumberSource companionGroupNumberSource = new NumberSource(0);
private List<GethCompanionGroup> companionGroups = new List<GethCompanionGroup>();
private GethBootstrapInfo? bootstrapInfo;
2023-04-10 10:09:41 +02:00
public MarketplaceController(TestLog log, K8sManager k8sManager)
{
this.log = log;
this.k8sManager = k8sManager;
}
2023-04-10 10:09:41 +02:00
}
}