1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2025-07-01 12:08:37 -04:00

reports: Add basic lua infrastructure

Of course, it doesn't do anything other than print "Hello World", but
that's okay.
This commit is contained in:
2017-01-23 20:40:39 -05:00
parent b148dce3ce
commit 806ceb2f5c
2 changed files with 60 additions and 0 deletions

View File

@ -74,6 +74,7 @@ func main() {
servemux.HandleFunc("/account/", AccountHandler)
servemux.HandleFunc("/transaction/", TransactionHandler)
servemux.HandleFunc("/import/gnucash", GnucashImportHandler)
servemux.HandleFunc("/report/", ReportHandler)
listener, err := net.Listen("tcp", ":"+strconv.Itoa(port))
if err != nil {