Skip to content

Commit

Permalink
Fix import statements for macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
vtourraine committed Jan 25, 2024
1 parent fbefa06 commit b766588
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Sources/AcknowList/AcknowListViewController.swift
Expand Up @@ -21,9 +21,14 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import Foundation

#if os(iOS) || os(tvOS)
import UIKit
#elseif os(macOS)
import AppKit
#endif

#if os(iOS)
import SafariServices
#endif
Expand Down

0 comments on commit b766588

Please sign in to comment.