8f8f8b2755
macOS menu bar app providing NHL game situational awareness with league-wide scoreboard, dynamic polling, notifications with team logos, and configurable display options.
15 lines
244 B
Swift
15 lines
244 B
Swift
//
|
|
// Date+easternTimeZone.swift
|
|
// IceGlass
|
|
//
|
|
// Copyright 2026 Rouslan Zenetl. All Rights Reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Date {
|
|
static var easternTimeZone: TimeZone {
|
|
TimeZone(identifier: "America/New_York")!
|
|
}
|
|
}
|