buuka/src/Operations.hs

17 lines
325 B
Haskell
Raw Permalink Normal View History

2020-12-30 23:29:56 +02:00
module Operations
2021-01-01 08:29:24 +02:00
( module Operations.Insert
, module Operations.List
2021-01-03 00:39:44 +02:00
, module Operations.Query
2021-01-03 22:05:22 +02:00
, module Operations.Import.Firefox
2021-01-01 08:29:24 +02:00
)
2020-12-30 23:29:56 +02:00
where
import Operations.Insert
(insert)
2021-01-01 08:29:24 +02:00
import Operations.List
(list)
2021-01-03 00:39:44 +02:00
import Operations.Query
(query)
2021-01-03 22:05:22 +02:00
import Operations.Import.Firefox
(importFirefox)