diff --git a/src/lib/server/osoh-state.json b/src/lib/server/osoh-state.json index 6395c2b..19bf5f8 100644 --- a/src/lib/server/osoh-state.json +++ b/src/lib/server/osoh-state.json @@ -24,3 +24,5 @@ "monitoringEvents": [], "auditTrail": [] } + + diff --git a/src/lib/server/osoh-store.ts b/src/lib/server/osoh-store.ts index a3f68e3..bd66e55 100644 --- a/src/lib/server/osoh-store.ts +++ b/src/lib/server/osoh-store.ts @@ -92,3 +92,5 @@ export const loadOsohStoreState = async (): Promise => { export const saveOsohStoreState = async (state: OsohStoreState): Promise => { await writeFile(statePath, JSON.stringify(state, null, 2) + "`n", 'utf8'); }; + +