-
Notifications
You must be signed in to change notification settings - Fork 6
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
Showing
6 changed files
with
140 additions
and
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,20 @@ | ||
PODS: | ||
- DZNEmptyDataSet (1.8.1) | ||
- SDWebImage (5.19.2): | ||
- SDWebImage/Core (= 5.19.2) | ||
- SDWebImage/Core (5.19.2) | ||
- Sentry (8.28.0): | ||
- Sentry/Core (= 8.28.0) | ||
- Sentry/Core (8.28.0) | ||
- StyledTextKit (0.2.0) | ||
|
||
DEPENDENCIES: | ||
- DZNEmptyDataSet | ||
- SDWebImage | ||
- Sentry | ||
- StyledTextKit | ||
|
||
SPEC REPOS: | ||
trunk: | ||
- DZNEmptyDataSet | ||
- SDWebImage | ||
- Sentry | ||
- StyledTextKit | ||
|
||
SPEC CHECKSUMS: | ||
DZNEmptyDataSet: 9525833b9e68ac21c30253e1d3d7076cc828eaa7 | ||
SDWebImage: dfe95b2466a9823cf9f0c6d01217c06550d7b29a | ||
Sentry: 1482a20b132098929714143f436a4fe574ad0517 | ||
StyledTextKit: dbfb29a59922c6f18897a0266acd139b7c9e712b | ||
|
||
PODFILE CHECKSUM: a9ff5b807d1ae60c2e0cea81cc3e17c39440f4ef | ||
PODFILE CHECKSUM: 0333d228da71984d961f27bce3f4f90e02f0018b | ||
|
||
COCOAPODS: 1.15.2 |
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
24 changes: 24 additions & 0 deletions
24
twackup-gui/Twackup.xcworkspace/xcshareddata/swiftpm/Package.resolved
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,24 @@ | ||
{ | ||
"originHash" : "d1aeda81a7bf270897b56c013ea456af992a1f3b963407fcd269c45746c97503", | ||
"pins" : [ | ||
{ | ||
"identity" : "nuke", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/kean/Nuke", | ||
"state" : { | ||
"revision" : "084076db4f9b9ee4db51177ef5a4879689c1aa09", | ||
"version" : "12.7.2" | ||
} | ||
}, | ||
{ | ||
"identity" : "sentry-cocoa", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/getsentry/sentry-cocoa", | ||
"state" : { | ||
"revision" : "c9a692ba837f4832ec7ce6378c071cb91cb55f92", | ||
"version" : "8.29.0" | ||
} | ||
} | ||
], | ||
"version" : 3 | ||
} |
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,22 @@ | ||
// | ||
// Result.swift | ||
// Twackup | ||
// | ||
// Created by Daniil on 15.06.2024. | ||
// | ||
|
||
extension Result { | ||
var isSuccess: Bool { | ||
return value != nil | ||
} | ||
|
||
var value: Success? { | ||
switch self { | ||
case let .success(value): | ||
return value | ||
|
||
case .failure: | ||
return nil | ||
} | ||
} | ||
} |
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