Add initial API & Configuration

This commit is contained in:
Ben Parsons 2024-04-17 22:03:28 +10:00
commit aa368471fe
13 changed files with 119 additions and 138 deletions

View file

@ -3,7 +3,7 @@ using Observatory.Framework.Files.Journal.Exploration;
namespace Pulsar.Utils;
public class JournalReader
public static class JournalReader
{
public static TJournal ObservatoryDeserializer<TJournal>(string json) where TJournal : JournalBase
{

View file

@ -1,14 +0,0 @@
namespace Pulsar.Utils;
internal static class SettingsManager
{
internal static void Save()
{
throw new NotImplementedException();
}
internal static void Load()
{
throw new NotImplementedException();
}
}