first commit

This commit is contained in:
2026-03-02 20:53:28 +01:00
commit d27c205106
63 changed files with 4593 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace HanaToolbox.Services.Interfaces;
public interface IHdbClientLocator
{
/// <summary>Returns the resolved path to hdbsql. Throws if not found.</summary>
string LocateHdbsql(string? configuredPath, string sid, string instanceNumber);
/// <summary>Returns the resolved path to hdbuserstore. Throws if not found.</summary>
string LocateHdbuserstore(string? configuredPath, string sid, string instanceNumber);
}