12 lines
335 B
C#
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();
|
|
} |