-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
920ae0b
commit 6265355
Showing
10 changed files
with
342 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// | ||
// RudderCustomerIOFactory.swift | ||
// Rudder-CustomerIO | ||
// | ||
// Created by Satheesh Kannan on 07/06/24. | ||
// | ||
|
||
import Foundation | ||
import Rudder | ||
|
||
// MARK: - RudderCustomerIOFactory | ||
@objcMembers | ||
public class RudderCustomerIOFactory: NSObject, RSIntegrationFactory { | ||
|
||
// MARK: - Instance | ||
public static let instance: RudderCustomerIOFactory = RudderCustomerIOFactory() | ||
|
||
// MARK: - Initializer | ||
public func initiate(_ config: [AnyHashable : Any], client: RSClient, rudderConfig: RSConfig) -> any RSIntegration { | ||
RSLogger.logDebug("Creating RudderIntegrationFactory") | ||
|
||
return RudderCustomerIOIntegration(config: config, client: client, rudderConfig: rudderConfig) | ||
} | ||
|
||
// MARK: - Key | ||
public func key() -> String { | ||
return "Customer IO" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.