19 lines
758 B
Swift
19 lines
758 B
Swift
// ===----------------------------------------------------------------------===
|
|
//
|
|
// This source file is part of the DiscogsService open source project
|
|
//
|
|
// Copyright (c) 2026 Röck+Cöde VoF. and the DiscogsService project authors
|
|
// Licensed under Apache license v2.0
|
|
//
|
|
// See LICENSE for license information
|
|
// See CONTRIBUTORS for the list of DiscogsService project authors
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
// ===----------------------------------------------------------------------===
|
|
|
|
/// A type alias for the live (production) Discogs API server defined in the OpenAPI document.
|
|
///
|
|
/// Use this as the `serverURL` when initializing a ``Client`` to connect to the production Discogs API.
|
|
public typealias LiveService = Servers.Server1
|