Skip to content

Commit

Permalink
lib/osv: add export list to Security.OSV
Browse files Browse the repository at this point in the history
  • Loading branch information
frasertweedale authored and blackheaven committed Jun 22, 2023
1 parent 0c32bf0 commit e31d49d
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion code/hsec-tools/src/Security/OSV.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,29 @@
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE OverloadedStrings #-}
module Security.OSV where

module Security.OSV
(
-- * Top-level data type
Model(..)
, newModel
, newModel'
, defaultSchemaVersion

-- * Subsidiary data types
, Affected(..)
, Credit(..)
, CreditType(..)
, creditTypes
, Event(..)
, Package(..)
, Range(..)
, Reference(..)
, ReferenceType(..)
, referenceTypes
, Severity(..)
)
where

import Control.Applicative ((<|>))
import Control.Monad (when)
Expand Down

0 comments on commit e31d49d

Please sign in to comment.