16 lines
203 B
Go
16 lines
203 B
Go
package report
|
|
|
|
import (
|
|
"html/template"
|
|
"time"
|
|
|
|
"git.schreifuchs.ch/lou-taylor/accounting/issue"
|
|
)
|
|
|
|
type Report struct {
|
|
Date time.Time
|
|
Issues []issue.Issue
|
|
Style template.CSS
|
|
Total string
|
|
}
|