11 lines
177 B
Go
11 lines
177 B
Go
package http
|
|
|
|
import (
|
|
"git.javil.eu/jacob1123/budgeteer/postgres"
|
|
)
|
|
|
|
type AlwaysNeededData struct {
|
|
Budget postgres.Budget
|
|
Accounts []postgres.GetAccountsWithBalanceRow
|
|
}
|