Skip to content
Snippets Groups Projects

Fix GetNotificationsReport

Merged Dariusz Rybicki requested to merge fix/get-notifications-report into development
2 files
+ 13
7
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -6,9 +6,9 @@ public struct MessengerGetNotificationReport {
case serviceListMissing
}
public var run: (String) throws -> NotificationReport
public var run: (String) throws -> [NotificationReport]
public func callAsFunction(notificationCSV: String) throws -> NotificationReport {
public func callAsFunction(notificationCSV: String) throws -> [NotificationReport] {
try run(notificationCSV)
}
}
Loading