From 301e0b3343b3133ac2235bf1863b44f1d21b2369 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Fri, 2 Jun 2023 12:22:14 -0400
Subject: [PATCH] add the barest skeleton of a library

---
 src/MyLib.hs             | 4 ----
 src/Tahoe/Capability.hs  | 1 +
 tahoe-capabilities.cabal | 2 +-
 3 files changed, 2 insertions(+), 5 deletions(-)
 delete mode 100644 src/MyLib.hs
 create mode 100644 src/Tahoe/Capability.hs

diff --git a/src/MyLib.hs b/src/MyLib.hs
deleted file mode 100644
index e657c44..0000000
--- a/src/MyLib.hs
+++ /dev/null
@@ -1,4 +0,0 @@
-module MyLib (someFunc) where
-
-someFunc :: IO ()
-someFunc = putStrLn "someFunc"
diff --git a/src/Tahoe/Capability.hs b/src/Tahoe/Capability.hs
new file mode 100644
index 0000000..d1393bb
--- /dev/null
+++ b/src/Tahoe/Capability.hs
@@ -0,0 +1 @@
+module Tahoe.Capability where
diff --git a/tahoe-capabilities.cabal b/tahoe-capabilities.cabal
index 1d7d442..d73684e 100644
--- a/tahoe-capabilities.cabal
+++ b/tahoe-capabilities.cabal
@@ -64,7 +64,7 @@ library
   import:           warnings
 
   -- Modules exported by the library.
-  exposed-modules:  MyLib
+  exposed-modules:  Tahoe.Capability
 
   -- Modules included in this library but not exported.
   -- other-modules:
-- 
GitLab