diff --git a/Example/App/AppDelegate.swift b/Example/App/AppDelegate.swift
new file mode 100644
index 0000000..c00fbed
--- /dev/null
+++ b/Example/App/AppDelegate.swift
@@ -0,0 +1,100 @@
+//
+// AppDelegate.swift
+// InStoreApp
+//
+// Created by Jakob Mygind on 15/11/2021.
+//
+
+import AppFeature
+import Combine
+import SwiftUI
+import UserNotificationsClient
+
+@main
+final class AppDelegate: NSObject, UIApplicationDelegate {
+ func application(
+ _ application: UIApplication,
+ didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil
+ ) -> Bool {
+ return true
+ }
+}
+
+class SceneDelegate: UIResponder, UIWindowSceneDelegate {
+ var window: UIWindow?
+ var userClient: UserNotificationClient?
+
+ func scene(
+ _ scene: UIScene,
+ willConnectTo session: UISceneSession,
+ options connectionOptions: UIScene.ConnectionOptions
+ ) {
+ guard let scene = (scene as? UIWindowScene) else { return }
+ self.window = UIWindow(windowScene: scene)
+ self.startApp()
+ }
+}
+
+// MARK: - Dependencies setup
+
+extension SceneDelegate {
+ fileprivate func startApp() {
+ // Set the user and remote notifications clients
+ // The user notification client needs to be initialized here at the app start
+ // to assign the UNNotificationCenter delegate soon enough to react to events
+ // coming from the notifications that opened the app
+ let environment = AppEnvironment(remoteNotificationsClient: .live,
+ userNotificationsClient: .live())
+
+ let vm = AppViewModel(environment: environment)
+ let appView = AppView(viewModel: vm)
+
+ // Listen to the notification events and handle them
+ Task {
+ for await event in environment.userNotificationsClient.delegate() {
+ handleNotificationEvent(event, appViewModel: vm)
+ }
+ }
+
+ // Register for remote notifications if the user granted the permissions
+ Task {
+ let allowed = await (environment.userNotificationsClient.getAuthorizationStatus() == .authorized)
+ if allowed {
+ environment.remoteNotificationsClient.registerForRemoteNotifications()
+ }
+ }
+
+ self.window?.rootViewController = UIHostingController(rootView: appView)
+ self.window?.makeKeyAndVisible()
+ }
+
+ /// Handles the incoming notification events
+ /// - Parameters:
+ /// - event: Notification event. They match the UNNotificationCenterDelegate methods
+ /// - appViewModel:AppViewModel to handle the notification events
+ func handleNotificationEvent(_ event: UserNotificationClient.DelegateEvent,
+ appViewModel: AppViewModel) {
+ switch event {
+ case .willPresentNotification(_, let completion):
+ // Notification presented when the app is in FOREGROUND
+ // Decide how to present it depending on the context
+ // Pass the presentation options to the completion
+ // If you do not pass anythig, the notification will not be presented
+ completion([.banner, .sound, .list, .badge])
+ case .didReceiveResponse(let response, let completion):
+ // User tapped on the notification
+ // Is triggered both when the app is in foreground and background
+
+ // Read the user info
+ if let deeplink = response.notification.request.content.userInfo["deeplink"] as? String {
+ appViewModel.receiveNotificationMessage(deeplink)
+ }
+
+ // Make sure to always run the completion
+ completion()
+ return
+ case .openSettingsForNotification:
+ return
+ }
+ }
+}
diff --git a/Example/App/Assets.xcassets/AccentColor.colorset/Contents.json b/Example/App/Assets.xcassets/AccentColor.colorset/Contents.json
new file mode 100644
index 0000000..eb87897
--- /dev/null
+++ b/Example/App/Assets.xcassets/AccentColor.colorset/Contents.json
@@ -0,0 +1,11 @@
+{
+ "colors" : [
+ {
+ "idiom" : "universal"
+ }
+ ],
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ }
+}
diff --git a/Example/App/Assets.xcassets/AppIcon.appiconset/Contents.json b/Example/App/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 0000000..4008384
--- /dev/null
+++ b/Example/App/Assets.xcassets/AppIcon.appiconset/Contents.json
@@ -0,0 +1,14 @@
+{
+ "images" : [
+ {
+ "filename" : "ItunesArtwork@2x.png",
+ "idiom" : "universal",
+ "platform" : "ios",
+ "size" : "1024x1024"
+ }
+ ],
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ }
+}
diff --git a/Example/App/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png b/Example/App/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png
new file mode 100644
index 0000000..eaac315
Binary files /dev/null and b/Example/App/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png differ
diff --git a/Example/App/Assets.xcassets/Contents.json b/Example/App/Assets.xcassets/Contents.json
new file mode 100644
index 0000000..73c0059
--- /dev/null
+++ b/Example/App/Assets.xcassets/Contents.json
@@ -0,0 +1,6 @@
+{
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ }
+}
diff --git a/Example/App/Assets.xcassets/LaunchImage.imageset/Contents.json b/Example/App/Assets.xcassets/LaunchImage.imageset/Contents.json
new file mode 100644
index 0000000..a19a549
--- /dev/null
+++ b/Example/App/Assets.xcassets/LaunchImage.imageset/Contents.json
@@ -0,0 +1,20 @@
+{
+ "images" : [
+ {
+ "idiom" : "universal",
+ "scale" : "1x"
+ },
+ {
+ "idiom" : "universal",
+ "scale" : "2x"
+ },
+ {
+ "idiom" : "universal",
+ "scale" : "3x"
+ }
+ ],
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ }
+}
diff --git a/Example/App/Base.lproj/LaunchScreen.storyboard b/Example/App/Base.lproj/LaunchScreen.storyboard
new file mode 100644
index 0000000..1674166
--- /dev/null
+++ b/Example/App/Base.lproj/LaunchScreen.storyboard
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Example/App/Info.plist b/Example/App/Info.plist
new file mode 100644
index 0000000..b23c166
--- /dev/null
+++ b/Example/App/Info.plist
@@ -0,0 +1,39 @@
+
+
+
+
+ API_BASE_URL_DEV
+ $(API_BASE_URL_DEV)
+ API_BASE_URL_PROD
+ $(API_BASE_URL_PROD)
+ DEFAULT_BASE_URL
+ $(DEFAULT_BASE_URL)
+ ITSAppUsesNonExemptEncryption
+
+ UIApplicationSceneManifest
+
+ UIApplicationSupportsMultipleScenes
+
+ UISceneConfigurations
+
+ UIWindowSceneSessionRoleApplication
+
+
+ UISceneConfigurationName
+ Default Configuration
+ UISceneDelegateClassName
+ $(PRODUCT_MODULE_NAME).SceneDelegate
+
+
+
+
+ UIStatusBarStyle
+ UIStatusBarStyleLightContent
+ UISupportedExternalAccessoryProtocols
+
+ com.bixolon.protocol
+
+ UIViewControllerBasedStatusBarAppearance
+
+
+
diff --git a/Example/Modules/.gitignore b/Example/Modules/.gitignore
new file mode 100644
index 0000000..bb460e7
--- /dev/null
+++ b/Example/Modules/.gitignore
@@ -0,0 +1,7 @@
+.DS_Store
+/.build
+/Packages
+/*.xcodeproj
+xcuserdata/
+DerivedData/
+.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
diff --git a/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/APIClient.xcscheme b/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/APIClient.xcscheme
new file mode 100644
index 0000000..cb599c2
--- /dev/null
+++ b/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/APIClient.xcscheme
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/APIClientLive.xcscheme b/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/APIClientLive.xcscheme
new file mode 100644
index 0000000..6c06f9d
--- /dev/null
+++ b/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/APIClientLive.xcscheme
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/AppFeature.xcscheme b/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/AppFeature.xcscheme
new file mode 100644
index 0000000..58e3ee2
--- /dev/null
+++ b/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/AppFeature.xcscheme
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/Localizations.xcscheme b/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/Localizations.xcscheme
new file mode 100644
index 0000000..d8addb4
--- /dev/null
+++ b/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/Localizations.xcscheme
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/Model.xcscheme b/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/Model.xcscheme
new file mode 100644
index 0000000..d772da1
--- /dev/null
+++ b/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/Model.xcscheme
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/Style.xcscheme b/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/Style.xcscheme
new file mode 100644
index 0000000..f2827f8
--- /dev/null
+++ b/Example/Modules/.swiftpm/xcode/xcshareddata/xcschemes/Style.xcscheme
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Example/Modules/Package.swift b/Example/Modules/Package.swift
new file mode 100644
index 0000000..3da5d2d
--- /dev/null
+++ b/Example/Modules/Package.swift
@@ -0,0 +1,32 @@
+// swift-tools-version:5.7
+// The swift-tools-version declares the minimum version of Swift required to build this package.
+
+import PackageDescription
+
+let package = Package(
+ name: "Modules",
+ platforms: [
+ .iOS(.v16)
+ ],
+ products: [
+ .library(name: "AppFeature", targets: ["AppFeature"])
+ ],
+ dependencies: [
+ .package(url: "https://github.com/pointfreeco/combine-schedulers", from: "0.5.3"),
+ .package(url: "https://github.com/pointfreeco/swiftui-navigation", from: "0.1.0"),
+ .package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "0.2.1"),
+ // NotificationsClients library
+ .package(path: "../..")
+ ],
+ targets: [
+ .target(
+ name: "AppFeature",
+ dependencies: [
+ .product(name: "XCTestDynamicOverlay", package: "xctest-dynamic-overlay"),
+ .product(name: "SwiftUINavigation", package: "swiftui-navigation"),
+ .product(name: "NotificationsClients", package: "NotificationsClients")
+ ],
+ resources: []
+ ),
+ ]
+)
diff --git a/Example/Modules/README.md b/Example/Modules/README.md
new file mode 100644
index 0000000..c51f598
--- /dev/null
+++ b/Example/Modules/README.md
@@ -0,0 +1,3 @@
+# Modules
+
+A description of this package.
diff --git a/Example/Modules/Sources/AppFeature/AppEnvironment.swift b/Example/Modules/Sources/AppFeature/AppEnvironment.swift
new file mode 100644
index 0000000..51c40df
--- /dev/null
+++ b/Example/Modules/Sources/AppFeature/AppEnvironment.swift
@@ -0,0 +1,18 @@
+import Combine
+import XCTestDynamicOverlay
+import RemoteNotificationsClient
+import UserNotificationsClient
+
+public struct AppEnvironment {
+
+ public let remoteNotificationsClient: RemoteNotificationsClient
+ public let userNotificationsClient: UserNotificationClient
+
+ public init(
+ remoteNotificationsClient: RemoteNotificationsClient,
+ userNotificationsClient: UserNotificationClient
+ ) {
+ self.remoteNotificationsClient = remoteNotificationsClient
+ self.userNotificationsClient = userNotificationsClient
+ }
+}
diff --git a/Example/Modules/Sources/AppFeature/AppView.swift b/Example/Modules/Sources/AppFeature/AppView.swift
new file mode 100644
index 0000000..e829d36
--- /dev/null
+++ b/Example/Modules/Sources/AppFeature/AppView.swift
@@ -0,0 +1,40 @@
+import SwiftUI
+import SwiftUINavigation
+
+public struct AppView: View {
+ @ObservedObject var viewModel: AppViewModel
+
+ public init(viewModel: AppViewModel) {
+ self.viewModel = viewModel
+ }
+
+ public var body: some View {
+ NavigationStack {
+ VStack {
+ if let message = viewModel.notificationMessage {
+ VStack {
+ Text("Notification data received:")
+ Text(message)
+ .foregroundColor(.red)
+ }
+ .padding(12)
+ }
+
+ Group {
+ Button("Request Notifications Permissions") {
+ viewModel.requestNotificationsAuthorization()
+ }.disabled(!viewModel.permissionsCanBeRequested)
+
+ Button("Send local push") {
+ viewModel.triggerLocalPushNotification()
+ }
+ }
+ .buttonStyle(.bordered)
+ .padding(6)
+ }.task {
+ await viewModel.checkPermissionStatus()
+ }
+ .navigationTitle("NotificationsClients")
+ }
+ }
+}
diff --git a/Example/Modules/Sources/AppFeature/AppViewModel.swift b/Example/Modules/Sources/AppFeature/AppViewModel.swift
new file mode 100644
index 0000000..8db4935
--- /dev/null
+++ b/Example/Modules/Sources/AppFeature/AppViewModel.swift
@@ -0,0 +1,73 @@
+import Combine
+import SwiftUI
+
+public class AppViewModel: ObservableObject {
+ var environment: AppEnvironment
+ @Published var permissionsCanBeRequested: Bool = true
+ @Published var notificationMessage: String?
+
+ public init(
+ environment: AppEnvironment
+ ) {
+ self.environment = environment
+ }
+
+ public func receiveNotificationMessage(_ message: String) {
+ self.notificationMessage = nil
+ withAnimation {
+ self.notificationMessage = message
+ }
+ }
+
+ func checkPermissionStatus() async {
+ let status = await environment.userNotificationsClient.getAuthorizationStatus()
+ switch status {
+ case .notDetermined:
+ permissionsCanBeRequested = true
+ default:
+ permissionsCanBeRequested = false
+ }
+ }
+
+ func requestNotificationsAuthorization() {
+ Task { @MainActor in
+ do {
+ // Get the authorization status
+ switch await environment.userNotificationsClient.getAuthorizationStatus() {
+ case .notDetermined:
+ // Request the authorization
+ let allowed = try await environment.userNotificationsClient.requestAuthorization([.alert, .badge, .sound])
+ if allowed {
+ // Register the app to receive remote notifications
+ // You probably want to call this also on app start
+ // for case when the user allows the push permissions in the iOS settings
+ environment.remoteNotificationsClient.registerForRemoteNotifications()
+ }
+ await checkPermissionStatus()
+ default: return
+ }
+ } catch {
+ print("❗️ Could not request remote notifications authorization: \(error)")
+ }
+ }
+ }
+
+ func triggerLocalPushNotification() {
+ Task {
+ do {
+ let content = UNMutableNotificationContent()
+ content.title = "Notification"
+ content.body = "Local notification works"
+ content.userInfo["deeplink"] = "scheme://not_really_a_deeplink"
+
+ let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 1, repeats: false)
+ try await environment.userNotificationsClient.addRequest(.init(identifier: UUID().uuidString,
+ content: content,
+ trigger: trigger))
+
+ } catch {
+ print("❗️ Error sending local push notification: \(error)")
+ }
+ }
+ }
+}
diff --git a/Example/Modules/build/GeneratedModuleMaps-iphoneos/AppVersion.modulemap b/Example/Modules/build/GeneratedModuleMaps-iphoneos/AppVersion.modulemap
new file mode 100644
index 0000000..51d3f25
--- /dev/null
+++ b/Example/Modules/build/GeneratedModuleMaps-iphoneos/AppVersion.modulemap
@@ -0,0 +1,4 @@
+module AppVersion {
+header "AppVersion-Swift.h"
+export *
+}
\ No newline at end of file
diff --git a/Example/Modules/build/GeneratedModuleMaps-iphoneos/Model.modulemap b/Example/Modules/build/GeneratedModuleMaps-iphoneos/Model.modulemap
new file mode 100644
index 0000000..66c39bd
--- /dev/null
+++ b/Example/Modules/build/GeneratedModuleMaps-iphoneos/Model.modulemap
@@ -0,0 +1,4 @@
+module Model {
+header "Model-Swift.h"
+export *
+}
\ No newline at end of file
diff --git a/Example/Modules/build/GeneratedModuleMaps-iphoneos/NetworkClient.modulemap b/Example/Modules/build/GeneratedModuleMaps-iphoneos/NetworkClient.modulemap
new file mode 100644
index 0000000..50c2854
--- /dev/null
+++ b/Example/Modules/build/GeneratedModuleMaps-iphoneos/NetworkClient.modulemap
@@ -0,0 +1,4 @@
+module NetworkClient {
+header "NetworkClient-Swift.h"
+export *
+}
\ No newline at end of file
diff --git a/Example/Modules/build/GeneratedModuleMaps-iphoneos/PrinterClient-Swift.h b/Example/Modules/build/GeneratedModuleMaps-iphoneos/PrinterClient-Swift.h
new file mode 100644
index 0000000..482aa27
--- /dev/null
+++ b/Example/Modules/build/GeneratedModuleMaps-iphoneos/PrinterClient-Swift.h
@@ -0,0 +1,212 @@
+// Generated by Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
+#ifndef PRINTERCLIENT_SWIFT_H
+#define PRINTERCLIENT_SWIFT_H
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wgcc-compat"
+
+#if !defined(__has_include)
+# define __has_include(x) 0
+#endif
+#if !defined(__has_attribute)
+# define __has_attribute(x) 0
+#endif
+#if !defined(__has_feature)
+# define __has_feature(x) 0
+#endif
+#if !defined(__has_warning)
+# define __has_warning(x) 0
+#endif
+
+#if __has_include()
+# include
+#endif
+
+#pragma clang diagnostic ignored "-Wauto-import"
+#include
+#include
+#include
+#include
+
+#if !defined(SWIFT_TYPEDEFS)
+# define SWIFT_TYPEDEFS 1
+# if __has_include()
+# include
+# elif !defined(__cplusplus)
+typedef uint_least16_t char16_t;
+typedef uint_least32_t char32_t;
+# endif
+typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
+typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
+typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
+typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
+typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
+typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
+typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
+typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
+typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
+typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
+typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
+typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
+#endif
+
+#if !defined(SWIFT_PASTE)
+# define SWIFT_PASTE_HELPER(x, y) x##y
+# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
+#endif
+#if !defined(SWIFT_METATYPE)
+# define SWIFT_METATYPE(X) Class
+#endif
+#if !defined(SWIFT_CLASS_PROPERTY)
+# if __has_feature(objc_class_property)
+# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
+# else
+# define SWIFT_CLASS_PROPERTY(...)
+# endif
+#endif
+
+#if __has_attribute(objc_runtime_name)
+# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
+#else
+# define SWIFT_RUNTIME_NAME(X)
+#endif
+#if __has_attribute(swift_name)
+# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
+#else
+# define SWIFT_COMPILE_NAME(X)
+#endif
+#if __has_attribute(objc_method_family)
+# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
+#else
+# define SWIFT_METHOD_FAMILY(X)
+#endif
+#if __has_attribute(noescape)
+# define SWIFT_NOESCAPE __attribute__((noescape))
+#else
+# define SWIFT_NOESCAPE
+#endif
+#if __has_attribute(ns_consumed)
+# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
+#else
+# define SWIFT_RELEASES_ARGUMENT
+#endif
+#if __has_attribute(warn_unused_result)
+# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
+#else
+# define SWIFT_WARN_UNUSED_RESULT
+#endif
+#if __has_attribute(noreturn)
+# define SWIFT_NORETURN __attribute__((noreturn))
+#else
+# define SWIFT_NORETURN
+#endif
+#if !defined(SWIFT_CLASS_EXTRA)
+# define SWIFT_CLASS_EXTRA
+#endif
+#if !defined(SWIFT_PROTOCOL_EXTRA)
+# define SWIFT_PROTOCOL_EXTRA
+#endif
+#if !defined(SWIFT_ENUM_EXTRA)
+# define SWIFT_ENUM_EXTRA
+#endif
+#if !defined(SWIFT_CLASS)
+# if __has_attribute(objc_subclassing_restricted)
+# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
+# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
+# else
+# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
+# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
+# endif
+#endif
+#if !defined(SWIFT_RESILIENT_CLASS)
+# if __has_attribute(objc_class_stub)
+# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
+# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
+# else
+# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
+# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
+# endif
+#endif
+
+#if !defined(SWIFT_PROTOCOL)
+# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
+# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
+#endif
+
+#if !defined(SWIFT_EXTENSION)
+# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
+#endif
+
+#if !defined(OBJC_DESIGNATED_INITIALIZER)
+# if __has_attribute(objc_designated_initializer)
+# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
+# else
+# define OBJC_DESIGNATED_INITIALIZER
+# endif
+#endif
+#if !defined(SWIFT_ENUM_ATTR)
+# if defined(__has_attribute) && __has_attribute(enum_extensibility)
+# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
+# else
+# define SWIFT_ENUM_ATTR(_extensibility)
+# endif
+#endif
+#if !defined(SWIFT_ENUM)
+# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
+# if __has_feature(generalized_swift_name)
+# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
+# else
+# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
+# endif
+#endif
+#if !defined(SWIFT_UNAVAILABLE)
+# define SWIFT_UNAVAILABLE __attribute__((unavailable))
+#endif
+#if !defined(SWIFT_UNAVAILABLE_MSG)
+# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
+#endif
+#if !defined(SWIFT_AVAILABILITY)
+# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
+#endif
+#if !defined(SWIFT_WEAK_IMPORT)
+# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
+#endif
+#if !defined(SWIFT_DEPRECATED)
+# define SWIFT_DEPRECATED __attribute__((deprecated))
+#endif
+#if !defined(SWIFT_DEPRECATED_MSG)
+# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
+#endif
+#if __has_feature(attribute_diagnose_if_objc)
+# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
+#else
+# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
+#endif
+#if !defined(IBSegueAction)
+# define IBSegueAction
+#endif
+#if __has_feature(modules)
+#if __has_warning("-Watimport-in-framework-header")
+#pragma clang diagnostic ignored "-Watimport-in-framework-header"
+#endif
+#endif
+
+#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
+#pragma clang diagnostic ignored "-Wduplicate-method-arg"
+#if __has_warning("-Wpragma-clang-attribute")
+# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
+#endif
+#pragma clang diagnostic ignored "-Wunknown-pragmas"
+#pragma clang diagnostic ignored "-Wnullability"
+
+#if __has_attribute(external_source_symbol)
+# pragma push_macro("any")
+# undef any
+# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="PrinterClient",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
+# pragma pop_macro("any")
+#endif
+
+#if __has_attribute(external_source_symbol)
+# pragma clang attribute pop
+#endif
+#pragma clang diagnostic pop
+#endif
diff --git a/Example/Modules/build/GeneratedModuleMaps-iphoneos/PrinterClient.modulemap b/Example/Modules/build/GeneratedModuleMaps-iphoneos/PrinterClient.modulemap
new file mode 100644
index 0000000..114b024
--- /dev/null
+++ b/Example/Modules/build/GeneratedModuleMaps-iphoneos/PrinterClient.modulemap
@@ -0,0 +1,4 @@
+module PrinterClient {
+header "PrinterClient-Swift.h"
+export *
+}
\ No newline at end of file
diff --git a/Example/Modules/build/GeneratedModuleMaps-iphoneos/SoundClient.modulemap b/Example/Modules/build/GeneratedModuleMaps-iphoneos/SoundClient.modulemap
new file mode 100644
index 0000000..d32a212
--- /dev/null
+++ b/Example/Modules/build/GeneratedModuleMaps-iphoneos/SoundClient.modulemap
@@ -0,0 +1,4 @@
+module SoundClient {
+header "SoundClient-Swift.h"
+export *
+}
\ No newline at end of file
diff --git a/Example/Modules/build/GeneratedModuleMaps-iphoneos/TouchInterceptorClient.modulemap b/Example/Modules/build/GeneratedModuleMaps-iphoneos/TouchInterceptorClient.modulemap
new file mode 100644
index 0000000..b9c4aef
--- /dev/null
+++ b/Example/Modules/build/GeneratedModuleMaps-iphoneos/TouchInterceptorClient.modulemap
@@ -0,0 +1,4 @@
+module TouchInterceptorClient {
+header "TouchInterceptorClient-Swift.h"
+export *
+}
\ No newline at end of file
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/AppVersion.build/AppVersion.modulemap b/Example/Modules/build/Modules.build/Release-iphoneos/AppVersion.build/AppVersion.modulemap
new file mode 100644
index 0000000..51d3f25
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/AppVersion.build/AppVersion.modulemap
@@ -0,0 +1,4 @@
+module AppVersion {
+header "AppVersion-Swift.h"
+export *
+}
\ No newline at end of file
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/Model.build/Model.modulemap b/Example/Modules/build/Modules.build/Release-iphoneos/Model.build/Model.modulemap
new file mode 100644
index 0000000..66c39bd
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/Model.build/Model.modulemap
@@ -0,0 +1,4 @@
+module Model {
+header "Model-Swift.h"
+export *
+}
\ No newline at end of file
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Model-OutputFileMap.json b/Example/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Model-OutputFileMap.json
new file mode 100644
index 0000000..1c4a59f
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Model-OutputFileMap.json
@@ -0,0 +1 @@
+{"":{"dependencies":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Model-master.d","diagnostics":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Model-master.dia","swift-dependencies":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Model-master.swiftdeps"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/APIError.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/APIError.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/APIError.o"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/APITokens.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/APITokens.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/APITokens.o"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Address.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Address.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Address.o"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/FileClient.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/FileClient.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/FileClient.o"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/JWT.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/JWT.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/JWT.o"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Mocks.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Mocks.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Mocks.o"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Notifications.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Notifications.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Notifications.o"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Order.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Order.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Order.o"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/PaginatedResponse.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/PaginatedResponse.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/PaginatedResponse.o"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Product.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Product.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Product.o"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Store.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Store.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Store.o"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/TaggedTypes.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/TaggedTypes.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/TaggedTypes.o"}}
\ No newline at end of file
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Model-master.swiftdeps b/Example/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Model-master.swiftdeps
new file mode 100644
index 0000000..ebc30c4
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Model-master.swiftdeps
@@ -0,0 +1,17 @@
+version: "Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)"
+options: "07ba6153f890b8d3f8d72548797ed5fb1cc6cfa1163c5810eacb3599dfdc3d9e"
+build_start_time: [1646739673, 662739038]
+build_end_time: [1646739674, 276296138]
+inputs:
+ "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/APIError.swift": !dirty [1646238462, 276232719]
+ "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/APITokens.swift": !dirty [1646303656, 496250629]
+ "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Address.swift": !dirty [1646238462, 283956527]
+ "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/FileClient.swift": !dirty [1646238462, 329151630]
+ "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/JWT.swift": !dirty [1646238462, 310457944]
+ "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Mocks.swift": !dirty [1646238462, 353058815]
+ "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Notifications.swift": !dirty [1646238462, 334352493]
+ "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Order.swift": !dirty [1646238462, 305630207]
+ "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/PaginatedResponse.swift": !dirty [1646238462, 374204635]
+ "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Product.swift": !dirty [1646238462, 360797882]
+ "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Store.swift": !dirty [1646238462, 355364799]
+ "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/TaggedTypes.swift": !dirty [1646238462, 332711696]
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Model.LinkFileList b/Example/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Model.LinkFileList
new file mode 100644
index 0000000..0332429
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Model.LinkFileList
@@ -0,0 +1,12 @@
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/APIError.o
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/APITokens.o
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Address.o
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/FileClient.o
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/JWT.o
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Mocks.o
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Notifications.o
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Order.o
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/PaginatedResponse.o
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Product.o
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Store.o
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/TaggedTypes.o
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Model.SwiftFileList b/Example/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Model.SwiftFileList
new file mode 100644
index 0000000..eabe145
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/Model.build/Objects-normal/arm64/Model.SwiftFileList
@@ -0,0 +1,12 @@
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/APIError.swift
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/APITokens.swift
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Address.swift
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/FileClient.swift
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/JWT.swift
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Mocks.swift
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Notifications.swift
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Order.swift
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/PaginatedResponse.swift
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Product.swift
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/Store.swift
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/Model/TaggedTypes.swift
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/Modules_Localizations.build/empty-Modules_Localizations.plist b/Example/Modules/build/Modules.build/Release-iphoneos/Modules_Localizations.build/empty-Modules_Localizations.plist
new file mode 100644
index 0000000..0c67376
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/Modules_Localizations.build/empty-Modules_Localizations.plist
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/Modules_SoundClient.build/empty-Modules_SoundClient.plist b/Example/Modules/build/Modules.build/Release-iphoneos/Modules_SoundClient.build/empty-Modules_SoundClient.plist
new file mode 100644
index 0000000..0c67376
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/Modules_SoundClient.build/empty-Modules_SoundClient.plist
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/Modules_Style.build/assetcatalog_dependencies b/Example/Modules/build/Modules.build/Release-iphoneos/Modules_Style.build/assetcatalog_dependencies
new file mode 100644
index 0000000..7d0a905
Binary files /dev/null and b/Example/Modules/build/Modules.build/Release-iphoneos/Modules_Style.build/assetcatalog_dependencies differ
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/Modules_Style.build/assetcatalog_generated_info.plist b/Example/Modules/build/Modules.build/Release-iphoneos/Modules_Style.build/assetcatalog_generated_info.plist
new file mode 100644
index 0000000..0c67376
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/Modules_Style.build/assetcatalog_generated_info.plist
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/Modules_Style.build/empty-Modules_Style.plist b/Example/Modules/build/Modules.build/Release-iphoneos/Modules_Style.build/empty-Modules_Style.plist
new file mode 100644
index 0000000..0c67376
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/Modules_Style.build/empty-Modules_Style.plist
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/NetworkClient.modulemap b/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/NetworkClient.modulemap
new file mode 100644
index 0000000..50c2854
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/NetworkClient.modulemap
@@ -0,0 +1,4 @@
+module NetworkClient {
+header "NetworkClient-Swift.h"
+export *
+}
\ No newline at end of file
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient-OutputFileMap.json b/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient-OutputFileMap.json
new file mode 100644
index 0000000..ea753f3
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient-OutputFileMap.json
@@ -0,0 +1 @@
+{"":{"dependencies":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient-master.d","diagnostics":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient-master.dia","swift-dependencies":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient-master.swiftdeps"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Client.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/Client.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/Client.o"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Live.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/Live.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/Live.o"}}
\ No newline at end of file
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient-master.d b/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient-master.d
new file mode 100644
index 0000000..f500a4d
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient-master.d
@@ -0,0 +1,6 @@
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/Client.o : /Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Live.swift /Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Client.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Network.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Darwin.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Foundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Swift.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/ObjectiveC.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Combine.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Dispatch.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Network.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Darwin.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Foundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreFoundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreGraphics.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Swift.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/_Concurrency.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet6.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/kcdata.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/uuid.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/device.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_debug.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/bank.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_posix_sys_types.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_cdefs.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/net.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Network.framework/Headers/Network.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/Live.o : /Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Live.swift /Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Client.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Network.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Darwin.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Foundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Swift.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/ObjectiveC.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Combine.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Dispatch.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Network.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Darwin.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Foundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreFoundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreGraphics.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Swift.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/_Concurrency.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet6.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/kcdata.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/uuid.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/device.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_debug.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/bank.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_posix_sys_types.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_cdefs.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/net.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Network.framework/Headers/Network.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient.swiftmodule : /Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Live.swift /Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Client.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Network.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Darwin.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Foundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Swift.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/ObjectiveC.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Combine.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Dispatch.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Network.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Darwin.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Foundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreFoundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreGraphics.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Swift.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/_Concurrency.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet6.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/kcdata.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/uuid.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/device.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_debug.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/bank.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_posix_sys_types.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_cdefs.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/net.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Network.framework/Headers/Network.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient.swiftdoc : /Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Live.swift /Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Client.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Network.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Darwin.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Foundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Swift.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/ObjectiveC.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Combine.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Dispatch.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Network.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Darwin.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Foundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreFoundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreGraphics.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Swift.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/_Concurrency.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet6.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/kcdata.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/uuid.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/device.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_debug.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/bank.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_posix_sys_types.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_cdefs.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/net.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Network.framework/Headers/Network.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient-Swift.h : /Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Live.swift /Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Client.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Network.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Darwin.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Foundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Swift.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/ObjectiveC.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Combine.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Dispatch.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Network.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Darwin.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Foundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreFoundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreGraphics.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Swift.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/_Concurrency.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet6.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/kcdata.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/uuid.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/device.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_debug.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/bank.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_posix_sys_types.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_cdefs.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/net.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Network.framework/Headers/Network.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient.swiftsourceinfo : /Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Live.swift /Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Client.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Network.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Darwin.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Foundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Swift.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/ObjectiveC.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Combine.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Dispatch.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Network.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Darwin.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Foundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreFoundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreGraphics.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Swift.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/_Concurrency.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet6.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/kcdata.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/uuid.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/device.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_debug.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/bank.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_posix_sys_types.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_cdefs.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/net.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Network.framework/Headers/Network.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient-master.dia b/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient-master.dia
new file mode 100644
index 0000000..1956f7a
Binary files /dev/null and b/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient-master.dia differ
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient-master.swiftdeps b/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient-master.swiftdeps
new file mode 100644
index 0000000..137c849
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient-master.swiftdeps
@@ -0,0 +1,7 @@
+version: "Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)"
+options: "279bce955140e95aa56661f014e9bac4aeb0849ca2fe8356d5c70a22d6f90568"
+build_start_time: [1646739673, 558987140]
+build_end_time: [1646739674, 259474992]
+inputs:
+ "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Client.swift": !dirty [1646238462, 587980985]
+ "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Live.swift": !dirty [1646238462, 592545032]
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient.LinkFileList b/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient.LinkFileList
new file mode 100644
index 0000000..d70da9a
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient.LinkFileList
@@ -0,0 +1,2 @@
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/Client.o
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/Live.o
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient.SwiftFileList b/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient.SwiftFileList
new file mode 100644
index 0000000..a76dc75
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/NetworkClient.build/Objects-normal/arm64/NetworkClient.SwiftFileList
@@ -0,0 +1,2 @@
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Client.swift
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/NetworkClient/Live.swift
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/Client.o b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/Client.o
new file mode 100644
index 0000000..58b1c4e
Binary files /dev/null and b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/Client.o differ
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-OutputFileMap.json b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-OutputFileMap.json
new file mode 100644
index 0000000..307fcd9
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-OutputFileMap.json
@@ -0,0 +1 @@
+{"":{"dependencies":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-master.d","diagnostics":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-master.dia","swift-dependencies":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-master.swiftdeps"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/PrinterClient/Client.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/Client.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/Client.o"}}
\ No newline at end of file
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-Swift.h b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-Swift.h
new file mode 100644
index 0000000..482aa27
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-Swift.h
@@ -0,0 +1,212 @@
+// Generated by Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
+#ifndef PRINTERCLIENT_SWIFT_H
+#define PRINTERCLIENT_SWIFT_H
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wgcc-compat"
+
+#if !defined(__has_include)
+# define __has_include(x) 0
+#endif
+#if !defined(__has_attribute)
+# define __has_attribute(x) 0
+#endif
+#if !defined(__has_feature)
+# define __has_feature(x) 0
+#endif
+#if !defined(__has_warning)
+# define __has_warning(x) 0
+#endif
+
+#if __has_include()
+# include
+#endif
+
+#pragma clang diagnostic ignored "-Wauto-import"
+#include
+#include
+#include
+#include
+
+#if !defined(SWIFT_TYPEDEFS)
+# define SWIFT_TYPEDEFS 1
+# if __has_include()
+# include
+# elif !defined(__cplusplus)
+typedef uint_least16_t char16_t;
+typedef uint_least32_t char32_t;
+# endif
+typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
+typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
+typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
+typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
+typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
+typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
+typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
+typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
+typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
+typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
+typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
+typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
+#endif
+
+#if !defined(SWIFT_PASTE)
+# define SWIFT_PASTE_HELPER(x, y) x##y
+# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
+#endif
+#if !defined(SWIFT_METATYPE)
+# define SWIFT_METATYPE(X) Class
+#endif
+#if !defined(SWIFT_CLASS_PROPERTY)
+# if __has_feature(objc_class_property)
+# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
+# else
+# define SWIFT_CLASS_PROPERTY(...)
+# endif
+#endif
+
+#if __has_attribute(objc_runtime_name)
+# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
+#else
+# define SWIFT_RUNTIME_NAME(X)
+#endif
+#if __has_attribute(swift_name)
+# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
+#else
+# define SWIFT_COMPILE_NAME(X)
+#endif
+#if __has_attribute(objc_method_family)
+# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
+#else
+# define SWIFT_METHOD_FAMILY(X)
+#endif
+#if __has_attribute(noescape)
+# define SWIFT_NOESCAPE __attribute__((noescape))
+#else
+# define SWIFT_NOESCAPE
+#endif
+#if __has_attribute(ns_consumed)
+# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
+#else
+# define SWIFT_RELEASES_ARGUMENT
+#endif
+#if __has_attribute(warn_unused_result)
+# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
+#else
+# define SWIFT_WARN_UNUSED_RESULT
+#endif
+#if __has_attribute(noreturn)
+# define SWIFT_NORETURN __attribute__((noreturn))
+#else
+# define SWIFT_NORETURN
+#endif
+#if !defined(SWIFT_CLASS_EXTRA)
+# define SWIFT_CLASS_EXTRA
+#endif
+#if !defined(SWIFT_PROTOCOL_EXTRA)
+# define SWIFT_PROTOCOL_EXTRA
+#endif
+#if !defined(SWIFT_ENUM_EXTRA)
+# define SWIFT_ENUM_EXTRA
+#endif
+#if !defined(SWIFT_CLASS)
+# if __has_attribute(objc_subclassing_restricted)
+# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
+# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
+# else
+# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
+# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
+# endif
+#endif
+#if !defined(SWIFT_RESILIENT_CLASS)
+# if __has_attribute(objc_class_stub)
+# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
+# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
+# else
+# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
+# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
+# endif
+#endif
+
+#if !defined(SWIFT_PROTOCOL)
+# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
+# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
+#endif
+
+#if !defined(SWIFT_EXTENSION)
+# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
+#endif
+
+#if !defined(OBJC_DESIGNATED_INITIALIZER)
+# if __has_attribute(objc_designated_initializer)
+# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
+# else
+# define OBJC_DESIGNATED_INITIALIZER
+# endif
+#endif
+#if !defined(SWIFT_ENUM_ATTR)
+# if defined(__has_attribute) && __has_attribute(enum_extensibility)
+# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
+# else
+# define SWIFT_ENUM_ATTR(_extensibility)
+# endif
+#endif
+#if !defined(SWIFT_ENUM)
+# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
+# if __has_feature(generalized_swift_name)
+# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
+# else
+# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
+# endif
+#endif
+#if !defined(SWIFT_UNAVAILABLE)
+# define SWIFT_UNAVAILABLE __attribute__((unavailable))
+#endif
+#if !defined(SWIFT_UNAVAILABLE_MSG)
+# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
+#endif
+#if !defined(SWIFT_AVAILABILITY)
+# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
+#endif
+#if !defined(SWIFT_WEAK_IMPORT)
+# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
+#endif
+#if !defined(SWIFT_DEPRECATED)
+# define SWIFT_DEPRECATED __attribute__((deprecated))
+#endif
+#if !defined(SWIFT_DEPRECATED_MSG)
+# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
+#endif
+#if __has_feature(attribute_diagnose_if_objc)
+# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
+#else
+# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
+#endif
+#if !defined(IBSegueAction)
+# define IBSegueAction
+#endif
+#if __has_feature(modules)
+#if __has_warning("-Watimport-in-framework-header")
+#pragma clang diagnostic ignored "-Watimport-in-framework-header"
+#endif
+#endif
+
+#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
+#pragma clang diagnostic ignored "-Wduplicate-method-arg"
+#if __has_warning("-Wpragma-clang-attribute")
+# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
+#endif
+#pragma clang diagnostic ignored "-Wunknown-pragmas"
+#pragma clang diagnostic ignored "-Wnullability"
+
+#if __has_attribute(external_source_symbol)
+# pragma push_macro("any")
+# undef any
+# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="PrinterClient",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
+# pragma pop_macro("any")
+#endif
+
+#if __has_attribute(external_source_symbol)
+# pragma clang attribute pop
+#endif
+#pragma clang diagnostic pop
+#endif
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-master.d b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-master.d
new file mode 100644
index 0000000..f2129b2
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-master.d
@@ -0,0 +1,5 @@
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/Client.o : /Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/PrinterClient/Client.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Darwin.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Foundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Swift.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/ObjectiveC.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Combine.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Dispatch.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Darwin.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Foundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreFoundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreGraphics.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Swift.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/_Concurrency.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet6.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/kcdata.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/uuid.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/device.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_debug.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/bank.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_posix_sys_types.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_cdefs.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/net.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.swiftmodule : /Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/PrinterClient/Client.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Darwin.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Foundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Swift.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/ObjectiveC.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Combine.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Dispatch.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Darwin.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Foundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreFoundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreGraphics.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Swift.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/_Concurrency.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet6.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/kcdata.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/uuid.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/device.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_debug.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/bank.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_posix_sys_types.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_cdefs.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/net.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.swiftdoc : /Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/PrinterClient/Client.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Darwin.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Foundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Swift.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/ObjectiveC.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Combine.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Dispatch.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Darwin.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Foundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreFoundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreGraphics.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Swift.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/_Concurrency.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet6.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/kcdata.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/uuid.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/device.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_debug.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/bank.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_posix_sys_types.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_cdefs.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/net.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-Swift.h : /Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/PrinterClient/Client.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Darwin.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Foundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Swift.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/ObjectiveC.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Combine.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Dispatch.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Darwin.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Foundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreFoundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreGraphics.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Swift.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/_Concurrency.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet6.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/kcdata.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/uuid.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/device.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_debug.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/bank.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_posix_sys_types.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_cdefs.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/net.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.swiftsourceinfo : /Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/PrinterClient/Client.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Darwin.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Foundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/Swift.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64-apple-ios.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/ObjectiveC.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Combine.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Dispatch.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Darwin.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Foundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreFoundation.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/CoreGraphics.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/Swift.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/prebuilt-modules/15.2/_Concurrency.swiftmodule/arm64-apple-ios.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet6.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/kcdata.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/uuid.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/device.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach_debug.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/mach.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/bank.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_posix_sys_types.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/darwin_cdefs.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/net.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/netinet.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-master.dia b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-master.dia
new file mode 100644
index 0000000..a448689
Binary files /dev/null and b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-master.dia differ
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-master.swiftdeps b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-master.swiftdeps
new file mode 100644
index 0000000..4bb0910
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient-master.swiftdeps
@@ -0,0 +1,6 @@
+version: "Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)"
+options: "b8f5e74fef108489543b05327fb8278e89aadc966d0c62c8be2b0af7cff11f49"
+build_start_time: [1646739670, 196513175]
+build_end_time: [1646739673, 272656917]
+inputs:
+ "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/PrinterClient/Client.swift": [1646238461, 358780860]
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.LinkFileList b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.LinkFileList
new file mode 100644
index 0000000..1a94b2d
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.LinkFileList
@@ -0,0 +1 @@
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/Client.o
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.SwiftFileList b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.SwiftFileList
new file mode 100644
index 0000000..3c406f0
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.SwiftFileList
@@ -0,0 +1 @@
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/PrinterClient/Client.swift
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.swiftdoc b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.swiftdoc
new file mode 100644
index 0000000..785ad95
Binary files /dev/null and b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.swiftdoc differ
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.swiftmodule b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.swiftmodule
new file mode 100644
index 0000000..8ac46df
Binary files /dev/null and b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.swiftmodule differ
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.swiftsourceinfo b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.swiftsourceinfo
new file mode 100644
index 0000000..038769b
Binary files /dev/null and b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient.swiftsourceinfo differ
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient_dependency_info.dat b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient_dependency_info.dat
new file mode 100644
index 0000000..8eee881
Binary files /dev/null and b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/Objects-normal/arm64/PrinterClient_dependency_info.dat differ
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/PrinterClient.modulemap b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/PrinterClient.modulemap
new file mode 100644
index 0000000..114b024
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/PrinterClient.build/PrinterClient.modulemap
@@ -0,0 +1,4 @@
+module PrinterClient {
+header "PrinterClient-Swift.h"
+export *
+}
\ No newline at end of file
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/DerivedSources/resource_bundle_accessor.swift b/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/DerivedSources/resource_bundle_accessor.swift
new file mode 100644
index 0000000..721d3c6
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/DerivedSources/resource_bundle_accessor.swift
@@ -0,0 +1,29 @@
+import class Foundation.Bundle
+
+private class BundleFinder {}
+
+extension Foundation.Bundle {
+ /// Returns the resource bundle associated with the current Swift module.
+ static var module: Bundle = {
+ let bundleName = "Modules_SoundClient"
+
+ let candidates = [
+ // Bundle should be present here when the package is linked into an App.
+ Bundle.main.resourceURL,
+
+ // Bundle should be present here when the package is linked into a framework.
+ Bundle(for: BundleFinder.self).resourceURL,
+
+ // For command-line tools.
+ Bundle.main.bundleURL,
+ ]
+
+ for candidate in candidates {
+ let bundlePath = candidate?.appendingPathComponent(bundleName + ".bundle")
+ if let bundle = bundlePath.flatMap(Bundle.init(url:)) {
+ return bundle
+ }
+ }
+ fatalError("unable to find bundle named Modules_SoundClient")
+ }()
+}
\ No newline at end of file
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/SoundClient-OutputFileMap.json b/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/SoundClient-OutputFileMap.json
new file mode 100644
index 0000000..ef5396d
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/SoundClient-OutputFileMap.json
@@ -0,0 +1 @@
+{"":{"dependencies":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/SoundClient-master.d","diagnostics":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/SoundClient-master.dia","swift-dependencies":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/SoundClient-master.swiftdeps"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/SoundClient/Client.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/Client.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/Client.o"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/DerivedSources/resource_bundle_accessor.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/resource_bundle_accessor.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/resource_bundle_accessor.o"}}
\ No newline at end of file
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/SoundClient-master.swiftdeps b/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/SoundClient-master.swiftdeps
new file mode 100644
index 0000000..5514087
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/SoundClient-master.swiftdeps
@@ -0,0 +1,8 @@
+version: "Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)"
+options: "279bce955140e95aa56661f014e9bac4aeb0849ca2fe8356d5c70a22d6f90568"
+build_start_time: [1646739673, 518069982]
+build_end_time: [1646739674, 284380912]
+inputs:
+ "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/SoundClient/Client.swift": !dirty [1646238461, 821224689]
+ ? "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/DerivedSources/resource_bundle_accessor.swift"
+ : !dirty [1646739673, 429886102]
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/SoundClient.LinkFileList b/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/SoundClient.LinkFileList
new file mode 100644
index 0000000..ea28140
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/SoundClient.LinkFileList
@@ -0,0 +1,2 @@
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/resource_bundle_accessor.o
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/Client.o
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/SoundClient.SwiftFileList b/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/SoundClient.SwiftFileList
new file mode 100644
index 0000000..68201ee
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/Objects-normal/arm64/SoundClient.SwiftFileList
@@ -0,0 +1,2 @@
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/DerivedSources/resource_bundle_accessor.swift
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/SoundClient/Client.swift
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/SoundClient.modulemap b/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/SoundClient.modulemap
new file mode 100644
index 0000000..d32a212
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/SoundClient.build/SoundClient.modulemap
@@ -0,0 +1,4 @@
+module SoundClient {
+header "SoundClient-Swift.h"
+export *
+}
\ No newline at end of file
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient-OutputFileMap.json b/Example/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient-OutputFileMap.json
new file mode 100644
index 0000000..d92cce8
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient-OutputFileMap.json
@@ -0,0 +1 @@
+{"":{"dependencies":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient-master.d","diagnostics":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient-master.dia","swift-dependencies":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient-master.swiftdeps"},"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/TouchInterceptorClient/TouchInterceptorClient.swift":{"llvm-bc":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient.bc","object":"/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient.o"}}
\ No newline at end of file
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient-master.swiftdeps b/Example/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient-master.swiftdeps
new file mode 100644
index 0000000..20739d8
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient-master.swiftdeps
@@ -0,0 +1,6 @@
+version: "Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)"
+options: "b4aeda3ea2f70730af2ce01d6265492e6d8151399fc63dc4011130b4f0de3adf"
+build_start_time: [1646739673, 494933128]
+build_end_time: [1646739674, 279633998]
+inputs:
+ "/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/TouchInterceptorClient/TouchInterceptorClient.swift": !dirty [1646238462, 665635824]
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient.LinkFileList b/Example/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient.LinkFileList
new file mode 100644
index 0000000..33939ab
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient.LinkFileList
@@ -0,0 +1 @@
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient.o
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient.SwiftFileList b/Example/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient.SwiftFileList
new file mode 100644
index 0000000..1489304
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/Objects-normal/arm64/TouchInterceptorClient.SwiftFileList
@@ -0,0 +1 @@
+/Users/jakobmygind/Documents/Xcode/ML/7-Eleven/InStoreApp/Modules/Sources/TouchInterceptorClient/TouchInterceptorClient.swift
diff --git a/Example/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/TouchInterceptorClient.modulemap b/Example/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/TouchInterceptorClient.modulemap
new file mode 100644
index 0000000..b9c4aef
--- /dev/null
+++ b/Example/Modules/build/Modules.build/Release-iphoneos/TouchInterceptorClient.build/TouchInterceptorClient.modulemap
@@ -0,0 +1,4 @@
+module TouchInterceptorClient {
+header "TouchInterceptorClient-Swift.h"
+export *
+}
\ No newline at end of file
diff --git a/Example/Modules/build/Release-iphoneos/Modules_Localizations.bundle/Info.plist b/Example/Modules/build/Release-iphoneos/Modules_Localizations.bundle/Info.plist
new file mode 100644
index 0000000..3e39e7f
Binary files /dev/null and b/Example/Modules/build/Release-iphoneos/Modules_Localizations.bundle/Info.plist differ
diff --git a/Example/Modules/build/Release-iphoneos/Modules_Localizations.bundle/Localizations_da-DK.json b/Example/Modules/build/Release-iphoneos/Modules_Localizations.bundle/Localizations_da-DK.json
new file mode 100644
index 0000000..f8a6c1b
--- /dev/null
+++ b/Example/Modules/build/Release-iphoneos/Modules_Localizations.bundle/Localizations_da-DK.json
@@ -0,0 +1,185 @@
+{
+ "data" : {
+ "dashboard" : {
+ "allOrdersButton" : "Se tidligere ordrer",
+ "columnAccepted" : "Accepterede",
+ "columnAcceptedEmpty" : "Ingen ordrer tilberedes",
+ "columnDoneToday" : "Gennemført i dag",
+ "columnDoneTodayEmpty" : "Ingen ordrer leveret i dag",
+ "columnIncoming" : "Nye ordrer",
+ "columnIncomingEmpty" : "Ingen nye ordrer",
+ "columnOutForDelivery" : "Under levering",
+ "columnOutForDeliveryEmpty" : "Ingen ordrer leveres",
+ "columnReady" : "Klar til afhentning",
+ "columnReadyEmpty" : "Ingen ordrer afventer afhentning",
+ "itemsPlural" : "varer",
+ "itemsSingular" : "vare",
+ "sectionLater" : "Senere",
+ "sectionToday" : "I dag",
+ "sectionTomorrow" : "I morgen"
+ },
+ "default" : {
+ "back" : "Tilbage",
+ "cancel" : "Annuller",
+ "edit" : "Rediger",
+ "later" : "Senere",
+ "next" : "Næste",
+ "no" : "Nej",
+ "ok" : "Ok",
+ "previous" : "Forrige",
+ "retry" : "Prøv igen",
+ "save" : "Gem",
+ "settings" : "Indstillinger",
+ "skip" : "Spring over",
+ "yes" : "Ja"
+ },
+ "deliveryType" : {
+ "collect" : "Afhentes",
+ "delivery" : "Leveres"
+ },
+ "error" : {
+ "authenticationError" : "Login er udløbet, login venligst ind igen.",
+ "connectionError" : "Ingen eller dårlig forbindelse til internettet",
+ "errorTitle" : "Fejl",
+ "serverError" : "Ingen forbindelse til system",
+ "unknownError" : "Ukendt fejl, prøv igen."
+ },
+ "login" : {
+ "appName" : "Merchant ",
+ "appVersionPrefix" : "Version",
+ "emailHeader" : "Email",
+ "emailPlaceholder" : "Skriv her",
+ "errorInvalidCredentials" : "Ugyldige loginoplysninger",
+ "loginButton" : "Log ind",
+ "passwordHeader" : "Password",
+ "passwordPlaceholder" : "Skriv her",
+ "resetPasswordMessage" : "Kontakt [hovedkontoret] for at nulstille passwordet.",
+ "title" : "Log ind"
+ },
+ "orderDetailNewOrderSection" : {
+ "acceptButton" : "Acceptér",
+ "customerNameHeader" : "Kundens navn",
+ "deliveryTimeHeader" : "Leveringstid",
+ "header" : "Ny ordre",
+ "phoneNumberHeader" : "Telefonnummer",
+ "pickedUpInStoreAt" : "Afhentes i butik",
+ "pickupTimeHeader" : "Afhentningstid",
+ "rejectButton" : "Afvis",
+ "subheader" : "Gennemgå ordren og se om alt kan leveres før ordren accepteres. Ring til kunden for at aftale evt. ombytning, før ordren afvises."
+ },
+ "orderDetails" : {
+ "aPiece" : "pr stk",
+ "completedBanner" : "Denne ordre er afsluttet",
+ "customerNoteHeader" : "Note fra kunde",
+ "deliveryTypeHeader" : "Leveringstype",
+ "errorCouldNotFetchProducts" : "Hentning af produkter mislykkedes🤬",
+ "errorStatusUpdateFailed" : "Opdatering af status for ordre mislykkedes🥲\nPrøv igen!",
+ "includeCutlery" : "Inkluder bestik",
+ "infoAddress" : "LeveringsAdresse",
+ "infoCustomerName" : "Kundens navn",
+ "infoDeliveryTime" : "Levering",
+ "infoEmail" : "Email",
+ "infoMobilePhone" : "Mobilnummer",
+ "infoOrderTime" : "Bestilling",
+ "infoPaymentType" : "Betalingsform",
+ "infoTakeoutPhone" : "Telefonnummer",
+ "infoTakeOutShopID" : "Takeout Shop ID",
+ "outForDeliveryButton" : "Under levering",
+ "pickedUpButton" : "Afhentet",
+ "pickupTimeHeader" : "Afhentningstid",
+ "printButton" : "Print",
+ "readyButton" : "Klar",
+ "rejectButton" : "Afvis",
+ "rejectOrderAlertCancel" : "Afvis ikke",
+ "rejectOrderAlertConfirm" : "Afvis",
+ "rejectOrderAlertMessage" : "Er du sikker på at du vil afvise denne ordre?",
+ "rejectOrderAlertTitle" : "Afvis ordre",
+ "sectionHeaderColdProducts" : "Kolde",
+ "sectionHeaderCustomerInfo" : "Kundeinformation",
+ "sectionHeaderOrderStatus" : "Ordrestatus",
+ "sectionHeaderOtherProducts" : "Andre",
+ "sectionHeaderTakeout" : "Takeout",
+ "sectionHeaderWarmProducts" : "Varme",
+ "sectionSubheaderColdProducts" : "Pakkes i thermopose",
+ "today" : "I dag",
+ "underPreparationButton" : "Forberedes"
+ },
+ "orderStatus" : {
+ "accepted" : "Accepterede"
+ },
+ "printer" : {
+ "bluetoothHintFooter" : "Printer skal være tilføjet under Bluetooth i indstillinger for iPad for at dukke op her",
+ "connectButton" : "Forbind",
+ "connectedSuccessMessage" : "Printer forbundet!",
+ "deleteButton" : "Slet",
+ "errorSomethingHappened" : "Der skete en fejl i forbindelsen til printeren",
+ "sectionHeaderActivePrinter" : "Aktiv printer",
+ "sectionHeaderNewPrinters" : "Vælg printer",
+ "title" : "Printer"
+ },
+ "printerOutput" : {
+ "coldHeader" : "Kolde",
+ "errorDeviceConnectionFailed" : "Kunne ikke forbinde til printeren",
+ "errorNoDeviceFound" : "Ingen printer forbundet til appen",
+ "includeCutlery" : "Inkludér bestik",
+ "noteHeader" : "Note",
+ "orderNumber" : "Ordrenr",
+ "otherHeader" : "Andre",
+ "warmHeader" : "Varme"
+ },
+ "searchOrders" : {
+ "customerNameHeader" : "Kundens navn",
+ "emptyMessage" : "Ingen ordrer fundet",
+ "orderDateHeader" : "Ordredato og -tid",
+ "orderNumberHeader" : "Nr.",
+ "orderStatusHeader" : "Status",
+ "searchfieldPlaceholder" : "Søg på ordrenr. og navn",
+ "statusAccepted" : "Accepteret",
+ "statusCompleted" : "Leveret",
+ "statusNew" : "Ny",
+ "statusReady" : "Klar til afhentning",
+ "statusRejected" : "Afvist",
+ "statusShipped" : "Under levering",
+ "title" : "Alle ordrer"
+ },
+ "settings" : {
+ "appVersionHeader" : "App-version",
+ "closeButton" : "Luk indstillinger",
+ "logOutAlertCancel" : "Forbliv logget ind",
+ "logOutAlertConfirm" : "Log ud",
+ "logOutAlertMessage" : "Er du sikker på at du vil logge ud?",
+ "logoutAlertTitle" : "Log ud",
+ "logOutButton" : "Log ud",
+ "printerHeader" : "Printer",
+ "selectPrinterButton" : "Vælg printer",
+ "title" : "Indstillinger",
+ "usernameHeader" : "Bruger"
+ },
+ "units" : {
+ "clt" : "Cl",
+ "cmt" : "cm",
+ "d70" : "Cal",
+ "dlt" : "Dl",
+ "e14" : "Kcal",
+ "grm" : "Gr",
+ "h87" : "styk",
+ "kgm" : "Kg",
+ "ltr" : "Liter",
+ "mlt" : "Ml"
+ }
+ },
+ "meta" : {
+ "language" : {
+ "direction" : "LRM",
+ "id" : 6,
+ "is_best_fit" : false,
+ "is_default" : true,
+ "locale" : "da-DK",
+ "name" : "Danish"
+ },
+ "platform" : {
+ "id" : 584,
+ "slug" : "mobile"
+ }
+ }
+}
\ No newline at end of file
diff --git a/Example/Modules/build/Release-iphoneos/Modules_SoundClient.bundle/Info.plist b/Example/Modules/build/Release-iphoneos/Modules_SoundClient.bundle/Info.plist
new file mode 100644
index 0000000..17fc8c3
Binary files /dev/null and b/Example/Modules/build/Release-iphoneos/Modules_SoundClient.bundle/Info.plist differ
diff --git a/Example/Modules/build/Release-iphoneos/Modules_SoundClient.bundle/NewOrder.mp3 b/Example/Modules/build/Release-iphoneos/Modules_SoundClient.bundle/NewOrder.mp3
new file mode 100644
index 0000000..fbfc071
Binary files /dev/null and b/Example/Modules/build/Release-iphoneos/Modules_SoundClient.bundle/NewOrder.mp3 differ
diff --git a/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/Assets.car b/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/Assets.car
new file mode 100644
index 0000000..195b020
Binary files /dev/null and b/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/Assets.car differ
diff --git a/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/KelptA3-Bold.otf b/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/KelptA3-Bold.otf
new file mode 100644
index 0000000..aab73ce
Binary files /dev/null and b/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/KelptA3-Bold.otf differ
diff --git a/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/KelptA3-ExtraLight.otf b/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/KelptA3-ExtraLight.otf
new file mode 100644
index 0000000..0092dab
Binary files /dev/null and b/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/KelptA3-ExtraLight.otf differ
diff --git a/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/KelptA3-Light.otf b/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/KelptA3-Light.otf
new file mode 100644
index 0000000..a6f6455
Binary files /dev/null and b/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/KelptA3-Light.otf differ
diff --git a/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/KelptA3-Medium.otf b/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/KelptA3-Medium.otf
new file mode 100644
index 0000000..f9bae60
Binary files /dev/null and b/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/KelptA3-Medium.otf differ
diff --git a/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/KelptA3-Regular.otf b/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/KelptA3-Regular.otf
new file mode 100644
index 0000000..e26c462
Binary files /dev/null and b/Example/Modules/build/Release-iphoneos/Modules_Style.bundle/KelptA3-Regular.otf differ
diff --git a/Example/Modules/build/Release-iphoneos/PrinterClient.o b/Example/Modules/build/Release-iphoneos/PrinterClient.o
new file mode 100644
index 0000000..09e9d2c
Binary files /dev/null and b/Example/Modules/build/Release-iphoneos/PrinterClient.o differ
diff --git a/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo b/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
new file mode 100644
index 0000000..038769b
Binary files /dev/null and b/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo differ
diff --git a/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/Project/arm64.swiftsourceinfo b/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/Project/arm64.swiftsourceinfo
new file mode 100644
index 0000000..038769b
Binary files /dev/null and b/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/Project/arm64.swiftsourceinfo differ
diff --git a/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/arm64-apple-ios.swiftdoc b/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/arm64-apple-ios.swiftdoc
new file mode 100644
index 0000000..785ad95
Binary files /dev/null and b/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/arm64-apple-ios.swiftdoc differ
diff --git a/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/arm64-apple-ios.swiftmodule b/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/arm64-apple-ios.swiftmodule
new file mode 100644
index 0000000..8ac46df
Binary files /dev/null and b/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/arm64-apple-ios.swiftmodule differ
diff --git a/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/arm64.swiftdoc b/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/arm64.swiftdoc
new file mode 100644
index 0000000..785ad95
Binary files /dev/null and b/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/arm64.swiftdoc differ
diff --git a/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/arm64.swiftmodule b/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/arm64.swiftmodule
new file mode 100644
index 0000000..8ac46df
Binary files /dev/null and b/Example/Modules/build/Release-iphoneos/PrinterClient.swiftmodule/arm64.swiftmodule differ
diff --git a/Example/NotificationClientsExample.xcodeproj/project.pbxproj b/Example/NotificationClientsExample.xcodeproj/project.pbxproj
new file mode 100644
index 0000000..ef72d50
--- /dev/null
+++ b/Example/NotificationClientsExample.xcodeproj/project.pbxproj
@@ -0,0 +1,539 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 55;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ BD2B080727833D070066D559 /* AppFeature in Frameworks */ = {isa = PBXBuildFile; productRef = BD2B080627833D070066D559 /* AppFeature */; };
+ BDCA8DA12742611B00195B05 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDCA8DA02742611B00195B05 /* AppDelegate.swift */; };
+ BDCA8DAA2742611D00195B05 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = BDCA8DA92742611D00195B05 /* Assets.xcassets */; };
+ BDCA8DAD2742611D00195B05 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = BDCA8DAB2742611D00195B05 /* LaunchScreen.storyboard */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXCopyFilesBuildPhase section */
+ BDDAD7AE274D2FD5000FB7D9 /* Embed Frameworks */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = "";
+ dstSubfolderSpec = 10;
+ files = (
+ );
+ name = "Embed Frameworks";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXCopyFilesBuildPhase section */
+
+/* Begin PBXFileReference section */
+ BDCA8D9D2742611B00195B05 /* NotificationClientsExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NotificationClientsExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ BDCA8DA02742611B00195B05 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
+ BDCA8DA92742611D00195B05 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
+ BDCA8DAC2742611D00195B05 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
+ BDCA8DAE2742611D00195B05 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
+ BDCA8DB4274275A600195B05 /* Modules */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Modules; sourceTree = ""; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ BDCA8D9A2742611B00195B05 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ BD2B080727833D070066D559 /* AppFeature in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ BD1B22FF274657E800F9B140 /* Frameworks */ = {
+ isa = PBXGroup;
+ children = (
+ );
+ name = Frameworks;
+ sourceTree = "";
+ };
+ BDCA8D942742611B00195B05 = {
+ isa = PBXGroup;
+ children = (
+ BDCA8D9F2742611B00195B05 /* App */,
+ BDCA8DB4274275A600195B05 /* Modules */,
+ BDCA8D9E2742611B00195B05 /* Products */,
+ BD1B22FF274657E800F9B140 /* Frameworks */,
+ );
+ sourceTree = "";
+ };
+ BDCA8D9E2742611B00195B05 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ BDCA8D9D2742611B00195B05 /* NotificationClientsExample.app */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ BDCA8D9F2742611B00195B05 /* App */ = {
+ isa = PBXGroup;
+ children = (
+ BDCA8DA02742611B00195B05 /* AppDelegate.swift */,
+ BDCA8DA92742611D00195B05 /* Assets.xcassets */,
+ BDCA8DAB2742611D00195B05 /* LaunchScreen.storyboard */,
+ BDCA8DAE2742611D00195B05 /* Info.plist */,
+ );
+ path = App;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+ BDCA8D9C2742611B00195B05 /* NotificationClientsExample */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = BDCA8DB12742611D00195B05 /* Build configuration list for PBXNativeTarget "NotificationClientsExample" */;
+ buildPhases = (
+ BD1B230227466B6C00F9B140 /* Localizations */,
+ BDCA8D992742611B00195B05 /* Sources */,
+ BDCA8D9A2742611B00195B05 /* Frameworks */,
+ BDCA8D9B2742611B00195B05 /* Resources */,
+ BDDAD7AE274D2FD5000FB7D9 /* Embed Frameworks */,
+ BD2B080D2784827F0066D559 /* swift-format */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = NotificationClientsExample;
+ packageProductDependencies = (
+ BD2B080627833D070066D559 /* AppFeature */,
+ );
+ productName = InStoreApp;
+ productReference = BDCA8D9D2742611B00195B05 /* NotificationClientsExample.app */;
+ productType = "com.apple.product-type.application";
+ };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+ BDCA8D952742611B00195B05 /* Project object */ = {
+ isa = PBXProject;
+ attributes = {
+ BuildIndependentTargetsInParallel = 1;
+ LastSwiftUpdateCheck = 1310;
+ LastUpgradeCheck = 1310;
+ TargetAttributes = {
+ BDCA8D9C2742611B00195B05 = {
+ CreatedOnToolsVersion = 13.1;
+ };
+ };
+ };
+ buildConfigurationList = BDCA8D982742611B00195B05 /* Build configuration list for PBXProject "NotificationClientsExample" */;
+ compatibilityVersion = "Xcode 13.0";
+ developmentRegion = en;
+ hasScannedForEncodings = 0;
+ knownRegions = (
+ en,
+ Base,
+ );
+ mainGroup = BDCA8D942742611B00195B05;
+ packageReferences = (
+ );
+ productRefGroup = BDCA8D9E2742611B00195B05 /* Products */;
+ projectDirPath = "";
+ projectRoot = "";
+ targets = (
+ BDCA8D9C2742611B00195B05 /* NotificationClientsExample */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+ BDCA8D9B2742611B00195B05 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ BDCA8DAD2742611D00195B05 /* LaunchScreen.storyboard in Resources */,
+ BDCA8DAA2742611D00195B05 /* Assets.xcassets in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXShellScriptBuildPhase section */
+ BD1B230227466B6C00F9B140 /* Localizations */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ );
+ inputPaths = (
+ );
+ name = Localizations;
+ outputFileListPaths = (
+ );
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\nTL_GEN_PATH=\"${SRCROOT}/Modules/Sources/Localizations/NStack/nstack-localizations-generator.bundle\"\nTL_CONFIG_PATH=\"${SRCROOT}/Modules/Sources/Localizations/NStack/NStack.plist\"\nTL_OUT_PATH=\"${SRCROOT}/Modules/Sources/Localizations\"\n\n# Check if doing a clean build\n#if test -f \"${DERIVED_FILE_DIR}/LocalizationsGenerator.lock\"; then\n#echo \"Not clean build, won't fetch localizations this time.\"\n#else\necho \"Clean build. Getting localizations...\"\n\"${TL_GEN_PATH}/Contents/MacOS/nstack-localizations-generator\" -plist \"${TL_CONFIG_PATH}\" -output \"${TL_OUT_PATH}\" -standalone\nmkdir -p \"${DERIVED_FILE_DIR}\"\ntouch \"${DERIVED_FILE_DIR}/LocalizationsGenerator.lock\" # create lock file\n#fi\n\n";
+ };
+ BD2B080D2784827F0066D559 /* swift-format */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ );
+ inputPaths = (
+ );
+ name = "swift-format";
+ outputFileListPaths = (
+ );
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "# Check if doing a clean build\n#if test -f \"${DERIVED_FILE_DIR}/swift-format.lock\"; then\n# echo \"Not clean build, won't run swift-format this time.\"\n #if which swift-format >/dev/null; then\n # swift-format -m lint -r ${PROJECT_DIR} --configuration swift-format-config.json\n # exit 0\n #else\n #echo \"warning: swift-format not installed\"\n #fi\n#elif which swift-format >/dev/null; then\n# echo \"Clean build. Running swift-format...\"\n# swift-format -m format -i -r ${PROJECT_DIR} --configuration swift-format-config.json\n# mkdir -p \"${DERIVED_FILE_DIR}\"\n# touch \"${DERIVED_FILE_DIR}/swift-format.lock\" # create lock file\n#else\n# echo \"warning: swift-format not installed\"\n#fi\n\n\n\n\n\n\n";
+ };
+/* End PBXShellScriptBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ BDCA8D992742611B00195B05 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ BDCA8DA12742611B00195B05 /* AppDelegate.swift in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXVariantGroup section */
+ BDCA8DAB2742611D00195B05 /* LaunchScreen.storyboard */ = {
+ isa = PBXVariantGroup;
+ children = (
+ BDCA8DAC2742611D00195B05 /* Base */,
+ );
+ name = LaunchScreen.storyboard;
+ sourceTree = "";
+ };
+/* End PBXVariantGroup section */
+
+/* Begin XCBuildConfiguration section */
+ BDA09B442756276400E95F61 /* Test */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_ENABLE_OBJC_WEAK = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ CODE_SIGN_IDENTITY = "";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_BITCODE = NO;
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu11;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = "";
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 15.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ MTL_FAST_MATH = YES;
+ SDKROOT = iphoneos;
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = TEST;
+ SWIFT_COMPILATION_MODE = wholemodule;
+ SWIFT_INCLUDE_PATHS = "";
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Test;
+ };
+ BDA09B452756276400E95F61 /* Test */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
+ CODE_SIGN_IDENTITY = "Apple Development";
+ CODE_SIGN_STYLE = Manual;
+ CURRENT_PROJECT_VERSION = 39;
+ DEVELOPMENT_TEAM = "";
+ GENERATE_INFOPLIST_FILE = YES;
+ INFOPLIST_FILE = App/Info.plist;
+ INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
+ INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
+ INFOPLIST_OUTPUT_FORMAT = XML;
+ IPHONEOS_DEPLOYMENT_TARGET = 16.0;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ MARKETING_VERSION = 0.1;
+ PRODUCT_BUNDLE_IDENTIFIER = "com.monstar-lab.template-test";
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ PROVISIONING_PROFILE_SPECIFIER = "";
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTS_MACCATALYST = NO;
+ SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
+ SWIFT_EMIT_LOC_STRINGS = YES;
+ SWIFT_VERSION = 5.0;
+ TARGETED_DEVICE_FAMILY = 1;
+ };
+ name = Test;
+ };
+ BDCA8DAF2742611D00195B05 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_ENABLE_OBJC_WEAK = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ CODE_SIGN_IDENTITY = "";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = dwarf;
+ ENABLE_BITCODE = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_TESTABILITY = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu11;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "DEBUG=1",
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 15.0;
+ MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
+ MTL_FAST_MATH = YES;
+ ONLY_ACTIVE_ARCH = YES;
+ SDKROOT = iphoneos;
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
+ SWIFT_INCLUDE_PATHS = "";
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ };
+ name = Debug;
+ };
+ BDCA8DB02742611D00195B05 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_ENABLE_OBJC_WEAK = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ CODE_SIGN_IDENTITY = "";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_BITCODE = NO;
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu11;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = "";
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 15.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ MTL_FAST_MATH = YES;
+ SDKROOT = iphoneos;
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = RELEASE;
+ SWIFT_COMPILATION_MODE = wholemodule;
+ SWIFT_INCLUDE_PATHS = "";
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Release;
+ };
+ BDCA8DB22742611D00195B05 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
+ CODE_SIGN_STYLE = Manual;
+ CURRENT_PROJECT_VERSION = 39;
+ DEVELOPMENT_TEAM = "";
+ GENERATE_INFOPLIST_FILE = YES;
+ INFOPLIST_FILE = App/Info.plist;
+ INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
+ INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
+ INFOPLIST_OUTPUT_FORMAT = XML;
+ IPHONEOS_DEPLOYMENT_TARGET = 16.0;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ MARKETING_VERSION = 0.1;
+ PRODUCT_BUNDLE_IDENTIFIER = "com.monstar-lab.template-debug";
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ PROVISIONING_PROFILE_SPECIFIER = "";
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTS_MACCATALYST = NO;
+ SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
+ SWIFT_EMIT_LOC_STRINGS = YES;
+ SWIFT_VERSION = 5.0;
+ TARGETED_DEVICE_FAMILY = 1;
+ };
+ name = Debug;
+ };
+ BDCA8DB32742611D00195B05 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
+ CODE_SIGN_IDENTITY = "Apple Development";
+ CODE_SIGN_STYLE = Manual;
+ CURRENT_PROJECT_VERSION = 39;
+ DEVELOPMENT_TEAM = "";
+ GENERATE_INFOPLIST_FILE = YES;
+ INFOPLIST_FILE = App/Info.plist;
+ INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
+ INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
+ INFOPLIST_OUTPUT_FORMAT = XML;
+ IPHONEOS_DEPLOYMENT_TARGET = 16.0;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ MARKETING_VERSION = 0.1;
+ PRODUCT_BUNDLE_IDENTIFIER = "com.monstar-lab.template.InStoreApp";
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ PROVISIONING_PROFILE_SPECIFIER = "";
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTS_MACCATALYST = NO;
+ SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
+ SWIFT_EMIT_LOC_STRINGS = YES;
+ SWIFT_VERSION = 5.0;
+ TARGETED_DEVICE_FAMILY = 1;
+ };
+ name = Release;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ BDCA8D982742611B00195B05 /* Build configuration list for PBXProject "NotificationClientsExample" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ BDCA8DAF2742611D00195B05 /* Debug */,
+ BDCA8DB02742611D00195B05 /* Release */,
+ BDA09B442756276400E95F61 /* Test */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ BDCA8DB12742611D00195B05 /* Build configuration list for PBXNativeTarget "NotificationClientsExample" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ BDCA8DB22742611D00195B05 /* Debug */,
+ BDCA8DB32742611D00195B05 /* Release */,
+ BDA09B452756276400E95F61 /* Test */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+
+/* Begin XCSwiftPackageProductDependency section */
+ BD2B080627833D070066D559 /* AppFeature */ = {
+ isa = XCSwiftPackageProductDependency;
+ productName = AppFeature;
+ };
+/* End XCSwiftPackageProductDependency section */
+ };
+ rootObject = BDCA8D952742611B00195B05 /* Project object */;
+}
diff --git a/Example/NotificationClientsExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Example/NotificationClientsExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..919434a
--- /dev/null
+++ b/Example/NotificationClientsExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/Example/NotificationClientsExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Example/NotificationClientsExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..18d9810
--- /dev/null
+++ b/Example/NotificationClientsExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/Example/NotificationClientsExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Example/NotificationClientsExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
new file mode 100644
index 0000000..a807a63
--- /dev/null
+++ b/Example/NotificationClientsExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
@@ -0,0 +1,43 @@
+{
+ "object": {
+ "pins": [
+ {
+ "package": "combine-schedulers",
+ "repositoryURL": "https://github.com/pointfreeco/combine-schedulers",
+ "state": {
+ "branch": null,
+ "revision": "4cf088c29a20f52be0f2ca54992b492c54e0076b",
+ "version": "0.5.3"
+ }
+ },
+ {
+ "package": "swift-case-paths",
+ "repositoryURL": "https://github.com/pointfreeco/swift-case-paths",
+ "state": {
+ "branch": null,
+ "revision": "241301b67d8551c26d8f09bd2c0e52cc49f18007",
+ "version": "0.8.0"
+ }
+ },
+ {
+ "package": "swiftui-navigation",
+ "repositoryURL": "https://github.com/pointfreeco/swiftui-navigation",
+ "state": {
+ "branch": null,
+ "revision": "2694c03284a368168b3e0b8d7ab52626802d2246",
+ "version": "0.1.0"
+ }
+ },
+ {
+ "package": "xctest-dynamic-overlay",
+ "repositoryURL": "https://github.com/pointfreeco/xctest-dynamic-overlay",
+ "state": {
+ "branch": null,
+ "revision": "a9daebf0bf65981fd159c885d504481a65a75f02",
+ "version": "0.8.0"
+ }
+ }
+ ]
+ },
+ "version": 1
+}
diff --git a/Example/NotificationClientsExample.xcodeproj/xcshareddata/xcschemes/NotificationsClientExample.xcscheme b/Example/NotificationClientsExample.xcodeproj/xcshareddata/xcschemes/NotificationsClientExample.xcscheme
new file mode 100644
index 0000000..8f78138
--- /dev/null
+++ b/Example/NotificationClientsExample.xcodeproj/xcshareddata/xcschemes/NotificationsClientExample.xcscheme
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Example/README.md b/Example/README.md
new file mode 100644
index 0000000..2f47281
--- /dev/null
+++ b/Example/README.md
@@ -0,0 +1,23 @@
+# iOS Template
+
+Scaffolding for starting a new project in the MVVM style using SwiftUI and SPM
+
+## Before you use this template
+
+Make sure you have familiarized yourself somewhat with the concepts in the MVVM playground located [here](https://github.com/nodes-ios/mvvm-playground)
+
+## Installation
+
+1. Clone repo
+2. Allow packages to resolve
+3. Name your project
+- Rename project: Tap main project, top left -> File inspector -> Identity and Type -> Name -> enter new name and tap 'enter' -> Tap 'Rename'
+- Rename the scheme: Tap the scheme -> Manage schemes -> change the name of the PROJECT_NAME scheme.
+5. In AppDelegate replace placeholders with relevant strings
+6. In .xcconfig files insert your own urls
+7. Insert the project specific NStack keys in the NStack.plist file, located in the App folder
+8. Insert your own colors in Colors.xcassets and Colors.swift in Style bundle
+9. Insert your own fonts in /Fonts and Fonts.swift in Style bundle
+10. Fix font names in RegisterFonts.swift
+11. Drop your own shared assets in Assets.xcassets and Assets.swift in Style bundle
+12. Delete the `.git` folder and run `git init`, so you're using a new repo for your project and not the template repo
\ No newline at end of file
diff --git a/Example/swift-format-config.json b/Example/swift-format-config.json
new file mode 100644
index 0000000..4a22b5c
--- /dev/null
+++ b/Example/swift-format-config.json
@@ -0,0 +1,56 @@
+{
+ "fileScopedDeclarationPrivacy" : {
+ "accessLevel" : "private"
+ },
+ "indentation" : {
+ "spaces" : 4
+ },
+ "indentConditionalCompilationBlocks" : true,
+ "indentSwitchCaseLabels" : false,
+ "lineBreakAroundMultilineExpressionChainComponents" : false,
+ "lineBreakBeforeControlFlowKeywords" : false,
+ "lineBreakBeforeEachArgument" : false,
+ "lineBreakBeforeEachGenericRequirement" : false,
+ "lineLength" : 100,
+ "maximumBlankLines" : 1,
+ "prioritizeKeepingFunctionOutputTogether" : false,
+ "respectsExistingLineBreaks" : true,
+ "rules" : {
+ "AllPublicDeclarationsHaveDocumentation" : false,
+ "AlwaysUseLowerCamelCase" : true,
+ "AmbiguousTrailingClosureOverload" : true,
+ "BeginDocumentationCommentWithOneLineSummary" : false,
+ "DoNotUseSemicolons" : true,
+ "DontRepeatTypeInStaticProperties" : true,
+ "FileScopedDeclarationPrivacy" : true,
+ "FullyIndirectEnum" : true,
+ "GroupNumericLiterals" : true,
+ "IdentifiersMustBeASCII" : true,
+ "NeverForceUnwrap" : false,
+ "NeverUseForceTry" : false,
+ "NeverUseImplicitlyUnwrappedOptionals" : false,
+ "NoAccessLevelOnExtensionDeclaration" : true,
+ "NoBlockComments" : true,
+ "NoCasesWithOnlyFallthrough" : true,
+ "NoEmptyTrailingClosureParentheses" : true,
+ "NoLabelsInCasePatterns" : true,
+ "NoLeadingUnderscores" : false,
+ "NoParensAroundConditions" : true,
+ "NoVoidReturnOnFunctionSignature" : true,
+ "OneCasePerLine" : true,
+ "OneVariableDeclarationPerLine" : true,
+ "OnlyOneTrailingClosureArgument" : false,
+ "OrderedImports" : true,
+ "ReturnVoidInsteadOfEmptyTuple" : true,
+ "UseEarlyExits" : false,
+ "UseLetInEveryBoundCaseVariable" : false,
+ "UseShorthandTypeNames" : true,
+ "UseSingleLinePropertyGetter" : true,
+ "UseSynthesizedInitializer" : true,
+ "UseTripleSlashForDocumentationComments" : true,
+ "UseWhereClausesInForLoops" : false,
+ "ValidateDocumentationComments" : false
+ },
+ "tabWidth" : 8,
+ "version" : 1
+}