Skip to content

Commit

Permalink
[#45] Clean up unnecessary code
Browse files Browse the repository at this point in the history
Resolves #45
  • Loading branch information
rashadg1030 committed Jun 24, 2019
1 parent 76bc370 commit e95a08c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/IW/Core/Issue.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module IW.Core.Issue
) where

import IW.Core.Id (Id (..))
import IW.Core.Repo (Repo (..))
import IW.Core.Repo (Repo)


-- | Data type representing a GitHub issue.
Expand Down
6 changes: 2 additions & 4 deletions src/IW/Core/Repo.hs
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
{-# LANGUAGE DeriveAnyClass #-}

module IW.Core.Repo
( Repo (..)
( Repo
) where


-- | Data type representing a GitHub repository.
data Repo = Repo
data Repo
4 changes: 2 additions & 2 deletions src/IW/Db/Issue.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{-# LANGUAGE QuasiQuotes #-}

-- | SQL queries to work with the @users@ table.
-- | SQL queries to work with the @issues@ table

module IW.Db.Issue
( getIssues
Expand Down Expand Up @@ -48,4 +48,4 @@ insertIssue Issue{..} = execute [sql|

-- | Insert a list of issues into the database
insertIssues :: (WithDb env m) => [Issue] -> m ()
insertIssues = undefined
insertIssues = undefined

0 comments on commit e95a08c

Please sign in to comment.