Paste server written in Haskell. Fork of Hpaste, fully freedom and privacy respecting and generally improved. At the time of writing there's an instance at <http://paste.rel4tion.org>.

[[ 🗃 ^aoqmo toothpaste ]] :: [📥 Inbox] [📤 Outbox] [🐤 Followers] [🤝 Collaborators] [🛠 Commits]

Clone

HTTPS: git clone https://vervis.peers.community/repos/aoqmo

SSH: git clone USERNAME@vervis.peers.community:aoqmo

Branches

Tags

hpaste :: src / Control / Monad /

Env.hs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
{-# OPTIONS -Wall #-}
{-# LANGUAGE OverloadedStrings #-}

-- | Abstraction of environment functions (could be state, could be
--   reader, whatever). Intended to ease migration from Reader/State.

module Control.Monad.Env
  (env)
  where

import Control.Monad.Reader

env :: MonadReader env m => (env -> val) -> m val
env = asks
[See repo JSON]