Upload patchfiles to azure blobstore

This commit is contained in:
2025-02-24 21:16:56 -06:00
parent c9407bd0bf
commit 387e00f160
6 changed files with 83 additions and 15 deletions

View File

@@ -1,6 +1,13 @@
namespace ALttPRandomizer.Options {
using System;
public class ServiceOptions {
public string PythonPath { get; set; } = null!;
public string RandomizerPath { get; set; } = null!;
public AzureSettings AzureSettings { get; set; } = new AzureSettings();
}
public class AzureSettings {
public Uri BlobstoreEndpoint { get; set; } = null!;
}
}