Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Temporalio/Bridge/EnvConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using System.Text.Json;
using System.Text.Json.Serialization;
using Temporalio.Client.EnvConfig;
using Temporalio.Common.EnvConfig;

namespace Temporalio.Bridge
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Temporalio.Client;

namespace Temporalio.Client.EnvConfig
namespace Temporalio.Common.EnvConfig
{
/// <summary>
/// Represents the overall client configuration.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Temporalio.Client.EnvConfig;
using Temporalio.Common.EnvConfig;
using Xunit;
using Xunit.Abstractions;

namespace Temporalio.Tests.Client.EnvConfig
namespace Temporalio.Tests.Common.EnvConfig
{
/// <summary>
/// Environment configuration tests following Python/TypeScript patterns for cross-SDK consistency.
Expand Down
Loading