mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-03 05:53:12 +00:00
19 lines
316 B
C#
19 lines
316 B
C#
namespace CodexPlugin
|
|
{
|
|
public class CodexExePath
|
|
{
|
|
private readonly string path = Path.Combine(
|
|
"d:",
|
|
"Dev",
|
|
"nim-codex",
|
|
"build",
|
|
"codex.exe"
|
|
);
|
|
|
|
public string Get()
|
|
{
|
|
return path;
|
|
}
|
|
}
|
|
}
|