all repos — ynab-ledger @ b7f04b53b91cb586324f780ca985cbe4f6137d57

Convert exported YNAB data to ledger-cli

src/Application.php (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
<?php

namespace YnabLedger;

use CLIFramework\Application as BaseApplication;

class Application extends BaseApplication {
    public function init () {
        parent::init();
        $this->command('convert');
    }
}