fix compilation error

This commit is contained in:
Lucy Cifferello
2023-06-16 12:49:00 -06:00
parent e16937040a
commit 9f4edfaf02
4 changed files with 14 additions and 15 deletions

View File

@@ -186,8 +186,8 @@ import Handler.Admin (
postPkgUploadR, postPkgUploadR,
) )
import Handler.Eos (getEosR, getEosVersionR) import Handler.Eos (getEosR, getEosVersionR)
import Handler.Root(getRootR)
import Handler.Package import Handler.Package
import Handler.Root
import Lib.Ssl ( import Lib.Ssl (
doesSslNeedRenew, doesSslNeedRenew,
renewSslCerts, renewSslCerts,

View File

@@ -153,8 +153,6 @@ import Yesod.Persist.Core (
import Database.Persist ((==.)) import Database.Persist ((==.))
import Database.Persist (selectFirst) import Database.Persist (selectFirst)
import Database.Persist (entityVal) import Database.Persist (entityVal)
import Handler.Root
-- | The foundation datatype for your application. This can be a good place to -- | The foundation datatype for your application. This can be a good place to
-- keep settings and values requiring initialization before your application -- keep settings and values requiring initialization before your application

View File

@@ -1,6 +1,7 @@
module Handler.Root where module Handler.Root where
import Startlude import Startlude
import Yesod
import Foundation
getRootR :: HandlerFor RegistryCtx ()
getRootR :: Handler ()
getRootR = notImplemented getRootR = notImplemented