8f8f8b2755
macOS menu bar app providing NHL game situational awareness with league-wide scoreboard, dynamic polling, notifications with team logos, and configurable display options.
18 lines
299 B
Swift
18 lines
299 B
Swift
//
|
|
// PollingInterval.swift
|
|
// IceGlass
|
|
//
|
|
// Copyright 2026 Rouslan Zenetl. All Rights Reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum PollingInterval: TimeInterval {
|
|
case idle = 3600
|
|
case bootstrap = 42
|
|
case liveGame = 7
|
|
case gameDay = 600
|
|
case preGame = 180
|
|
case everyMinute = 60
|
|
}
|