mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-06 15:33:11 +00:00
14 lines
398 B
C#
14 lines
398 B
C#
using ArgsUniform;
|
|
|
|
namespace BiblioTech
|
|
{
|
|
public class Configuration
|
|
{
|
|
[Uniform("token", "t", "TOKEN", true, "Discord Application Token")]
|
|
public string ApplicationToken { get; set; } = string.Empty;
|
|
|
|
[Uniform("deploys", "d", "DEPLOYS", false, "Path where deployment JSONs are located.")]
|
|
public string DeploymentsPath { get; set; } = "deploys";
|
|
}
|
|
}
|