view LazyBear/LazyBearApp.swift @ 459:114e4e3d1c7a

Delete ColorTest.swift committer: GitHub <noreply@github.com>
author Dennis C. M. <dennis@denniscm.com>
date Mon, 28 Jun 2021 16:32:19 +0200
parents 01fa77358b82
children 783b567800d9
line wrap: on
line source

//
//  LazyBearApp.swift
//  LazyBear
//
//  Created by Dennis Concepción Martín on 17/2/21.
//

import SwiftUI
import Purchases

@main
struct LazyBearApp: App {
    let persistenceController = PersistenceController.shared  // Core Data init
//    init() {  /// Revenue Cat configuration
//            Purchases.configure(withAPIKey: "ZnlVFgEqTmhLagtzgFawvlhAROXQjyFi")
//        }

    var body: some Scene {
        WindowGroup {
            ContentView()
                .environment(\.managedObjectContext, persistenceController.container.viewContext)
        }
    }
}