mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-21 13:51:50 +03:00
16 lines
288 B
Haskell
16 lines
288 B
Haskell
|
{-|
|
||
|
Code for setting up the RIO environment.
|
||
|
-}
|
||
|
module Urbit.King.App.Class
|
||
|
( HasStderrLogFunc(..)
|
||
|
)
|
||
|
where
|
||
|
|
||
|
import Urbit.Prelude
|
||
|
|
||
|
|
||
|
-- KingEnv ---------------------------------------------------------------------
|
||
|
|
||
|
class HasStderrLogFunc a where
|
||
|
stderrLogFuncL :: Lens' a LogFunc
|