17 lines
384 B
C#
17 lines
384 B
C#
namespace FinalFactory.Rendezvous.TestClient;
|
|
|
|
/// <summary>
|
|
/// Bootstrap entry point for the public-SDK-only diagnostic client.
|
|
/// </summary>
|
|
public static class Program
|
|
{
|
|
/// <summary>
|
|
/// Runs the bootstrap diagnostic.
|
|
/// </summary>
|
|
public static int Main()
|
|
{
|
|
Console.WriteLine("Rendezvous TestClient bootstrap is ready.");
|
|
return 0;
|
|
}
|
|
}
|