REF generalize typeclass

This commit is contained in:
Nathan Dwarshuis 2023-01-03 22:32:43 -05:00
parent 0d024ab649
commit a61b17502d
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ data VEnv c = VEnv
, vEnv :: !SimpleApp
}
instance HasLogFunc (VEnv SysClient) where
instance SafeClient c => HasLogFunc (VEnv c) where
logFuncL = lens vEnv (\x y -> x {vEnv = y}) . logFuncL
instance HasClient VEnv where