Types and tools for interacting with FunBot's external events, to be used by FunBot itself and by programs communicating with it.

[[ 🗃 ^br6Go funbot-ext-events ]] :: [📥 Inbox] [📤 Outbox] [🐤 Followers] [🤝 Collaborators] [🛠 Commits]

Clone

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

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

Branches

Tags

master ::

funbot-ext-events.cabal

name:                funbot-ext-events
version:             0.3.0.0
synopsis:            Interact with FunBot's external events.
description:
  This is a library providing types and tools for interacting with
  <https://notabug.org/fr33domlover/funbot FunBot>'s external events. The
  code was extracted from FunBot itself, so that independent programs can
  interact with it, e.g. by using its client API.

  Since the provided types change every time an external event type is added or
  modified, many of this library's releases are expected to break
  compatibility.  In most cases you should either use a higher-level library
  such as <https://notabug.org/fr33domlover/funbot-client funbot-client>, or
  perhaps create one yourself.
homepage:            https://notabug.org/fr33domlover/funbot-ext-events
bug-reports:         https://notabug.org/fr33domlover/funbot-ext-events/issues
license:             PublicDomain
license-file:        COPYING
author:              fr33domlover
maintainer:          fr33domlover@riseup.net
copyright:           ♡ Copying is an act of love. Please copy, reuse and share.
category:            Network, Web
build-type:          Simple
extra-source-files:  AUTHORS ChangeLog COPYING INSTALL NEWS.md README.md
cabal-version:       >=1.10

source-repository head
  type:                git
  location:            https://notabug.org/fr33domlover/funbot-ext-events.git

library
  exposed-modules:     FunBot.ExtEvents
  -- other-modules:       
  -- other-extensions:    
  build-depends:       aeson >=0.7
                     , base  >=4.7 && <5
                     , text  >=1
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall

[See repo JSON]