Skip to content

Commit

Permalink
Add IDatabaseContainer to ClickHouse and Kusto
Browse files Browse the repository at this point in the history
  • Loading branch information
0xced committed Aug 31, 2023
1 parent 3a88750 commit 459250d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Testcontainers.ClickHouse/ClickHouseContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Testcontainers.ClickHouse;

/// <inheritdoc cref="DockerContainer" />
[PublicAPI]
public sealed class ClickHouseContainer : DockerContainer
public sealed class ClickHouseContainer : DockerContainer, IDatabaseContainer
{
private readonly ClickHouseConfiguration _configuration;

Expand Down
2 changes: 1 addition & 1 deletion src/Testcontainers.Kusto/KustoContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Testcontainers.Kusto;

/// <inheritdoc cref="DockerContainer" />
[PublicAPI]
public sealed class KustoContainer : DockerContainer
public sealed class KustoContainer : DockerContainer, IDatabaseContainer
{
/// <summary>
/// Initializes a new instance of the <see cref="KustoContainer" /> class.
Expand Down

0 comments on commit 459250d

Please sign in to comment.