mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
Treating AltKit as a full module resulted in more complexity than necessary, when we really just wanted to share some files between different targets. Now we can share individual files across modules as-needed without AltKit overhead.
14 lines
339 B
Objective-C
14 lines
339 B
Objective-C
//
|
|
// Use this file to import your target's public headers that you would like to expose to Swift.
|
|
//
|
|
|
|
#import "ALTDeviceManager.h"
|
|
#import "ALTWiredConnection.h"
|
|
#import "ALTNotificationConnection.h"
|
|
|
|
// Shared
|
|
#import "ALTConstants.h"
|
|
#import "ALTConnection.h"
|
|
#import "NSError+ALTServerError.h"
|
|
#import "CFNotificationName+AltStore.h"
|