feat: add VaultSession (vault lifecycle and entry CRUD)
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
#if __OBJC__
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
#if __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
NSBundle* KeePassKit_SWIFTPM_MODULE_BUNDLE(void);
|
||||
|
||||
#define SWIFTPM_MODULE_BUNDLE KeePassKit_SWIFTPM_MODULE_BUNDLE()
|
||||
|
||||
#if __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
NSBundle* KeePassKit_SWIFTPM_MODULE_BUNDLE() {
|
||||
NSURL *bundleURL = [[[NSBundle mainBundle] bundleURL] URLByAppendingPathComponent:@"KeePassKit_KeePassKit.bundle"];
|
||||
|
||||
NSBundle *preferredBundle = [NSBundle bundleWithURL:bundleURL];
|
||||
if (preferredBundle == nil) {
|
||||
return [NSBundle bundleWithPath:@"/Users/kriss/Dev/local/MyPass/MyPassCore/.build/arm64-apple-macosx/debug/KeePassKit_KeePassKit.bundle"];
|
||||
}
|
||||
|
||||
return preferredBundle;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Reference in New Issue
Block a user