File: src\Aspire.Hosting.Nats\NatsContainerImageTags.cs | Web Access |
Project: src\tests\Aspire.Hosting.Nats.Tests\Aspire.Hosting.Nats.Tests.csproj (Aspire.Hosting.Nats.Tests) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Aspire.Hosting.Nats; internal static class NatsContainerImageTags { /// <summary>docker.io</summary> public const string Registry = "docker.io"; /// <summary>library/nats</summary> public const string Image = "library/nats"; /// <summary>2.10</summary> public const string Tag = "2.10"; } |