feat(Variables) Added variable service and new game patch

This commit is contained in:
2022-04-18 18:28:56 -04:00
parent 72286f9f7b
commit c0c4e251a0
15 changed files with 86 additions and 10 deletions
+2
View File
@@ -27,4 +27,6 @@ using (var db = new DatabaseContext(options.Options))
File.WriteAllTextAsync($"{webPath}/NoteContentModels.json", JsonSerializer.Serialize(db.NoteContentModels));
File.WriteAllTextAsync($"{webPath}/NoteConnectionModels.json", JsonSerializer.Serialize(db.NoteConnectionModels));
File.WriteAllTextAsync($"{webPath}/NoteSectionModels.json", JsonSerializer.Serialize(db.NoteSectionModels));
File.WriteAllTextAsync($"{webPath}/Variables.json", JsonSerializer.Serialize(db.Variables));
}