From c85f093a60466a67d9f816ca234661cd5a39da1a Mon Sep 17 00:00:00 2001 From: Saku Laesvuori Date: Thu, 19 Oct 2023 10:01:22 +0300 Subject: [PATCH] Update PrintSchema to match new module hierarchy --- PrintSchema.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PrintSchema.hs b/PrintSchema.hs index 64a22ca..a64ac5d 100644 --- a/PrintSchema.hs +++ b/PrintSchema.hs @@ -1,6 +1,6 @@ import Data.Morpheus.Types (render, App) -import Server.API (coreApp) +import Datarekisteri.Backend.API (coreApp) import qualified Data.ByteString.Lazy.Char8 as C8 -import Server (APIM) +import Datarekisteri.Backend (APIM) main = C8.putStrLn $ render (coreApp :: App () APIM)