module Mit.Env
  ( Env (..),
  )
where

import Mit.Prelude

data Env = Env
  { Env -> Int
verbosity :: Int
  }