CLI: Add account list command

This commit is contained in:
Jason Wilder
2015-02-15 13:36:10 -07:00
parent f6c07fdabd
commit ca37b24455
4 changed files with 58 additions and 1 deletions
+4
View File
@@ -49,6 +49,10 @@ type GetAccountByNameQuery struct {
Result *Account
}
type GetAccountsQuery struct {
Result []*Account
}
type AccountDTO struct {
Id int64 `json:"id"`
Name string `json:"name"`