package handlers import "time" // RelTime exports relTime for testing. func RelTime(t time.Time) string { return relTime(t) } // ExpiryDays exports expiryDays for testing. func ExpiryDays(t time.Time) int { return expiryDays(t) } // FormatRecords exports formatRecords for testing. func FormatRecords(records map[string][]string) string { return formatRecords(records) }