summaryrefslogtreecommitdiff
path: root/Database/Keys
diff options
context:
space:
mode:
Diffstat (limited to 'Database/Keys')
-rw-r--r--Database/Keys/Types.hs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Database/Keys/Types.hs b/Database/Keys/Types.hs
new file mode 100644
index 000000000..a627b3ca5
--- /dev/null
+++ b/Database/Keys/Types.hs
@@ -0,0 +1,14 @@
+{- Sqlite database of information about Keys, data types.
+ -
+ - Copyright 2015 Joey Hess <id@joeyh.name>
+ -:
+ - Licensed under the GNU GPL version 3 or higher.
+ -}
+
+module Database.Keys.Types (
+ DbHandle(..)
+) where
+
+import qualified Database.Handle as H
+
+newtype DbHandle = DbHandle H.DbHandle