diff options
author | Ben Sima <ben@bsima.me> | 2019-03-26 18:52:18 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-03-26 18:52:27 -0700 |
commit | cfd213917c766c91f4c5fc7fdc91c2ca0ea13c26 (patch) | |
tree | 9e60c80caecfef65cca58255c1220354ebbbcbac | |
parent | 1a5ffdd736452e61d9ea1c3ec92a1833e82f5dcb (diff) |
ibb: move influencers to lore
-rw-r--r-- | apex/Ibb.hs | 2 | ||||
-rw-r--r-- | lore/Biz/Ibb.hs (renamed from apex/Influencers.hs) | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/apex/Ibb.hs b/apex/Ibb.hs index 9ef777b..21c1043 100644 --- a/apex/Ibb.hs +++ b/apex/Ibb.hs @@ -3,12 +3,12 @@ module Ibb where +import Biz.Ibb (Person(..), Book(..), allPeople) import Control.Monad.IO.Class (liftIO) import Data.ByteString.Lazy (ByteString) import Data.Maybe (fromMaybe) import Data.Text.Lazy (Text) import Data.Text.Lazy.Encoding (encodeUtf8) -import Influencers (Person(..), Book(..), allPeople) import System.Environment (lookupEnv) import System.Random (newStdGen) import System.Random.Shuffle (shuffle') diff --git a/apex/Influencers.hs b/lore/Biz/Ibb.hs index c75e9fd..d080468 100644 --- a/apex/Influencers.hs +++ b/lore/Biz/Ibb.hs @@ -1,7 +1,5 @@ {-# LANGUAGE OverloadedStrings #-} -{-# LANGUAGE QuasiQuotes #-} - -module Influencers where +module Biz.Ibb where import Data.Text.Lazy (Text) |