diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-02-19 04:55:36 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-02-19 04:55:36 +0100 |
commit | bbe3b75bfd0767c61bcd436e843b9c785efd289f (patch) | |
tree | 5d3f62f0e8eb8b96f89175bfc43e443648ad4f8c /src/Store.hs | |
parent | 748f82632e5ab6fc2c2f7a6eedb1ac4c467ccb3e (diff) |
support `INSERT`, `DELETE`, `UPDATE`
Diffstat (limited to 'src/Store.hs')
-rw-r--r-- | src/Store.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Store.hs b/src/Store.hs index f7562f5..1cb9392 100644 --- a/src/Store.hs +++ b/src/Store.hs @@ -1,6 +1,8 @@ module Store ( module Store.Query, + module Store.Store, ) where import Store.Query +import Store.Store |