vpn-router-0.0.1: src/VpnRouter/App.hs
module VpnRouter.App where import VpnRouter.Prelude import UnliftIO.Exception ( stringException, throwIO ) type NetM m = (HasCallStack, MonadIO m) ex :: NetM m => String -> m a ex em = throwIO $ stringException em