From e5e0f1c0e0ba1825ea22a2608eacaae4305ea80d Mon Sep 17 00:00:00 2001 From: James Brechtel Date: Thu, 21 May 2026 10:34:03 -0400 Subject: [PATCH] chore: add yaml and base64-bytestring dependencies, re-export Config --- src/Roux.hs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Roux.hs b/src/Roux.hs index 167192c..c1c8a4f 100644 --- a/src/Roux.hs +++ b/src/Roux.hs @@ -1,10 +1,12 @@ -- | Top-level re-exports and application setup for Roux. module Roux ( app, + loadConfig, module X, ) where import Data.CookLang as X +import Roux.Config (loadConfig) import Roux.CooklangPrint as X import Roux.SchemaOrg as X import Roux.Server (app)