1 {-# OPTIONS_GHC -cpp #-} 2 {-| 3 4 The Commands package defines all the commands offered by the hledger 5 application, like \"register\" and \"balance\". This module exports all 6 the commands; you can also import individual modules if you prefer. 7 8 -} 9 10 module Commands.All ( 11 module Commands.Add, 12 module Commands.Balance, 13 module Commands.Convert, 14 module Commands.Histogram, 15 module Commands.Print, 16 module Commands.Register, 17 module Commands.Stats, 18 #ifdef VTY 19 module Commands.UI, 20 #endif 21 #ifdef HAPPS 22 module Commands.Web, 23 #endif 24 ) 25 where 26 import Commands.Add 27 import Commands.Balance 28 import Commands.Convert 29 import Commands.Histogram 30 import Commands.Print 31 import Commands.Register 32 import Commands.Stats 33 #ifdef VTY 34 import Commands.UI 35 #endif 36 #ifdef HAPPS 37 import Commands.Web 38 #endif