File: DaprConstants.cs
Web Access
Project: src\src\Aspire.Hosting.Dapr\Aspire.Hosting.Dapr.csproj (Aspire.Hosting.Dapr)
// 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.Dapr;
 
internal static class DaprConstants
{
    public static class BuildingBlocks
    {
        public const string PubSub = "pubsub";
 
        public const string StateStore = "state";
    }
}