mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-04-06 07:38:21 +00:00
17 lines
526 B
Swift
17 lines
526 B
Swift
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 {}
|
|
}
|