This commit is contained in:
2016-12-27 00:28:52 +01:00
parent 0037cf045c
commit 5754b97e4d
2 changed files with 29 additions and 0 deletions

6
data.go Normal file
View File

@ -0,0 +1,6 @@
package budgeteer
type Data interface {
GetToken() Token
GetBudgets() []Budget
}