From 03fa6ee89b16e8ce897bf2af80259c6defaad3c7 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Fri, 12 Sep 2025 01:04:10 +0200 Subject: [PATCH] Removed the AmiiboClient enumeration type from the library target. --- .../Public/Enumerations/AmiiboClient.swift | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 Sources/AmiiboService/Public/Enumerations/AmiiboClient.swift diff --git a/Sources/AmiiboService/Public/Enumerations/AmiiboClient.swift b/Sources/AmiiboService/Public/Enumerations/AmiiboClient.swift deleted file mode 100644 index c293758..0000000 --- a/Sources/AmiiboService/Public/Enumerations/AmiiboClient.swift +++ /dev/null @@ -1,21 +0,0 @@ -//===----------------------------------------------------------------------=== -// -// This source file is part of the AmiiboService open source project -// -// Copyright (c) 2024-2025 Röck+Cöde VoF. and the AmiiboAPI project authors -// Licensed under the EUPL 1.2 or later. -// -// See LICENSE for license information -// See CONTRIBUTORS for the list of AmiiboAPI project authors -// -//===----------------------------------------------------------------------=== - -/// A representation of the types of client that a ``AmiiboService`` service can utilize. -/// -/// > important: This enumeration has been defined as a way to avoid exposing the `APIClient` protocol outside the boundaries of this library. -public enum AmiiboClient { - /// A live Amiibo client to interact with the online service. - case live(AmiiboLiveClient = .init()) - ///A mock Amiibo client, for testing purposes. - case mock(AmiiboMockClient) -}