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, attachmentDirName string,
customMeta map[string]func() string, customMeta map[string]func() string,
excludes []string, excludes []string,
apps map[string]appCallback,
) Config { ) Config {
return Config{ return Config{
ReadableFormats: readableFormats, ReadableFormats: readableFormats,
AttachmentDirName: attachmentDirName, AttachmentDirName: attachmentDirName,
CustomMeta: customMeta, CustomMeta: customMeta,
Excludes: excludes, Excludes: excludes,
Apps: apps,
} }
} }