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.
15 lines
243 B
Swift
15 lines
243 B
Swift
//
|
|
// main.swift
|
|
// AltDaemon
|
|
//
|
|
// Created by Riley Testut on 6/2/20.
|
|
// Copyright © 2020 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
autoreleasepool {
|
|
DaemonConnectionManager.shared.start()
|
|
RunLoop.current.run()
|
|
}
|