Files
NetNewsWire/Modules/Web/Sources/Web/UserAgent.swift
2024-07-06 21:07:05 -07:00

24 lines
453 B
Swift
Executable File

//
// UserAgent.swift
// RSWeb
//
// Created by Brent Simmons on 8/27/16.
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
//
import Foundation
public struct UserAgent {
public static let fromInfoPlist: String = {
Bundle.main.object(forInfoDictionaryKey: "UserAgent") as! String
}()
public static let headers: [String: String] = {
let userAgent = fromInfoPlist
return [HTTPRequestHeader.userAgent: userAgent]
}()
}