15 lines
321 B
JavaScript
15 lines
321 B
JavaScript
exports.GET = {
|
|
description: 'get account data',
|
|
summary: 'get account summary',
|
|
tags: ['accounts', 'state'],
|
|
querystring: {
|
|
type: 'object',
|
|
properties: {
|
|
"account": {
|
|
description: 'account name',
|
|
type: 'string'
|
|
}
|
|
}
|
|
}
|
|
};
|