import Foundation import os // This defines the minimal information required so all other files can do // `extension Ghostty` to add more to it. This purposely has minimal // dependencies so things like our dock tile plugin can use it. enum Ghostty { // The primary logger used by the GhosttyKit libraries. static let logger = Logger( subsystem: Bundle.main.bundleIdentifier!, category: "ghostty" ) // All the notifications that will be emitted will be put here. struct Notification {} }