Skip to content
This repository has been archived by the owner on Mar 25, 2022. It is now read-only.

Commit

Permalink
Make Config internal
Browse files Browse the repository at this point in the history
  • Loading branch information
VolcanicArts committed Mar 8, 2022
1 parent b2a04eb commit b66c21b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions VRCHypeRate/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Newtonsoft.Json;
using Newtonsoft.Json;
using VRCHypeRate.Client;
using VRCHypeRate.Models;
using VRCHypeRate.Utils;
Expand All @@ -8,7 +8,7 @@ namespace VRCHypeRate;
public static class Program
{
private static readonly Logger Logger = Logger.GetLogger("VRCHypeRate");
public static ConfigModel Config = null!;
internal static ConfigModel Config = null!;
public static void Main()
{
string configFile;
Expand Down

0 comments on commit b66c21b

Please sign in to comment.