Add initial Reports object

This commit is contained in:
Patrick Smith
2018-09-05 13:15:46 -04:00
parent 91cb986b8e
commit 557df21a30
2 changed files with 16 additions and 4 deletions

9
atst/domain/reports.py Normal file
View File

@@ -0,0 +1,9 @@
class Reports:
@classmethod
def workspace_totals(cls, workspace):
return {
'budget': 100_000_000,
'spent': 40_000_000,
}