Monorepo with centralized build props, npm workspaces, LlamaSharp AI, SQLite/SQLCipher storage, Svelte frontend, and unified smoke tests. Co-Authored-By: Oz <oz-agent@warp.dev>
9 lines
147 B
C#
9 lines
147 B
C#
using Journal.Core.Models;
|
|
|
|
namespace Journal.Core.Services.Config;
|
|
|
|
public interface IJournalConfigService
|
|
{
|
|
JournalConfig Current { get; }
|
|
}
|