File: UI.hs

package info (click to toggle)
haskell-hledger-ui 1.32.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 420 kB
  • sloc: haskell: 2,443; makefile: 5
file content (25 lines) | stat: -rw-r--r-- 618 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{-|

This is the root module of the @hledger-ui@ package,
providing hledger's terminal user interface.
The main function, command-line options, and terminal themes are exported.

== See also:

- hledger-lib:Hledger
- hledger:Hledger.Cli
- [The README files](https://github.com/search?q=repo%3Asimonmichael%2Fhledger+path%3A**%2FREADME*&type=code&ref=advsearch)
- [The high-level developer docs](https://hledger.org/dev.html)

-}

module Hledger.UI (
  module Hledger.UI.Main,
  module Hledger.UI.Theme,
  module Hledger.UI.UIOptions,
)
where

import Hledger.UI.Main
import Hledger.UI.UIOptions
import Hledger.UI.Theme