Files
TinfoilVibeServer/TinfoilVibeServer/Models/KeySetHolder.cs
T
2025-11-02 20:24:58 +10:30

12 lines
335 B
C#

using LibHac.Common.Keys;
namespace TinfoilVibeServer.Models;
/// <summary>
/// A tiny static holder that contains the KeySet loaded from disk.
/// All parts of the application that need keys just read this property.
/// </summary>
public static class KeySetHolder
{
public static KeySet KeySet { get; set; } = new KeySet();
}