fix NewConfig

This commit is contained in:
Arnas Udovic 2025-01-12 00:15:45 +02:00
parent 21b7e666bb
commit a478327382

View file

@ -150,12 +150,14 @@ func NewConfig(
attachmentDirName string,
customMeta map[string]func() string,
excludes []string,
apps map[string]appCallback,
) Config {
return Config{
ReadableFormats: readableFormats,
AttachmentDirName: attachmentDirName,
CustomMeta: customMeta,
Excludes: excludes,
Apps: apps,
}
}