packages feed

mortred 0.0.1 → 0.0.2

raw patch · 2 files changed

+16/−2 lines, 2 files

Files

mortred.cabal view
@@ -5,14 +5,20 @@ -- see: https://github.com/sol/hpack  name:           mortred-version:        0.0.1+version:        0.0.2 synopsis:       Library for setting up and running scrapers with webdriver. description:    A set of setup- and helper-functions for using webdriver in Haskell, with auto-downloads of correct binaries. category:       web-scraping, selenium+homepage:       https://github.com/quanterall/mortred#readme+bug-reports:    https://github.com/quanterall/mortred/issues maintainer:     Rickard Andersson <gonz@severnatazvezda.com> license:        BSD2 license-file:   LICENSE.txt build-type:     Simple++source-repository head+  type: git+  location: https://github.com/quanterall/mortred  library   exposed-modules:
src/Mortred/Session.hs view
@@ -1,4 +1,12 @@-module Mortred.Session where+module Mortred.Session+  ( tryStartSession,+    startSession,+    SessionMode (..),+    SessionStartResult (..),+    SessionStartError (..),+    stopSession,+  )+where  import Mortred.Selenium import Mortred.Types