mirror of
https://github.com/DuendeSoftware/products
synced 2026-05-24 09:28:24 +00:00
13 lines
426 B
C#
13 lines
426 B
C#
// Copyright (c) Duende Software. All rights reserved.
|
|
// See LICENSE in the project root for license information.
|
|
|
|
namespace Duende.Xunit.Playwright;
|
|
|
|
/// <summary>
|
|
/// This interface describes all the services in an AppHost and provides Urls to services in the host for external code.
|
|
/// </summary>
|
|
public interface IAppHostServiceRoutes
|
|
{
|
|
public string[] ServiceNames { get; }
|
|
public Uri UrlTo(string hostName);
|
|
}
|