// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Aspire.Cli.Templating;
/// <summary>
/// Known template identifiers.
/// </summary>
internal static class KnownTemplateId
{
/// <summary>
/// The template ID for the empty AppHost template.
/// </summary>
public const string EmptyAppHost = "aspire-empty";
/// <summary>
/// The template ID for the TypeScript starter template.
/// </summary>
public const string TypeScriptStarter = "aspire-ts-starter";
}
|