// // YahooEndpoints.swift // FantasyWatch // // Created by Claude Code // import Foundation enum YahooEndpoint: Endpoint { case userTeams case matchup(teamKey: String) case roster(teamKey: String) var path: String { switch self { case .userTeams: return "/users;use_login=1/games;game_keys=nhl/teams" case .matchup(let teamKey): return "/team/\(teamKey)/matchups" case .roster(let teamKey): return "/team/\(teamKey)/roster" } } var method: HTTPMethod { .get } var queryParameters: [String: String]? { ["format": "json"] } }