add description to Function def

This commit is contained in:
James Turk 2020-05-28 14:46:57 -04:00
parent 72c3c797ea
commit 6f8900a1c2
2 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,9 @@ boto3 = "^1.13.18"
pyyaml = "^5.3.1"
attrs = "^19.3.0"
[tool.poetry.scripts]
tripod = 'tripod:cli'
[tool.poetry.dev-dependencies]
[build-system]

View File

@ -13,6 +13,7 @@ import typing
@attr.s(auto_attribs=True)
class Function:
name: str
description: str
runtime: str
role_arn: str
handler: str