From e31d49d10c0151751407b2da25c53f49be9d09c3 Mon Sep 17 00:00:00 2001 From: Fraser Tweedale Date: Thu, 22 Jun 2023 23:37:58 +1000 Subject: [PATCH] lib/osv: add export list to Security.OSV --- code/hsec-tools/src/Security/OSV.hs | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/code/hsec-tools/src/Security/OSV.hs b/code/hsec-tools/src/Security/OSV.hs index e9e09d6f..9a95f075 100644 --- a/code/hsec-tools/src/Security/OSV.hs +++ b/code/hsec-tools/src/Security/OSV.hs @@ -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)