From 172e51da2e2f7faa75046f660a1c6924ded7af3a Mon Sep 17 00:00:00 2001 From: Ladislas de Toldi Date: Sat, 20 Jan 2024 15:01:07 +0100 Subject: [PATCH] :recycle: (ContentKit): Refactor to enum instead of class --- Modules/ContentKit/Sources/ContentKit.swift | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/Modules/ContentKit/Sources/ContentKit.swift b/Modules/ContentKit/Sources/ContentKit.swift index f875e75a23..098329ee18 100644 --- a/Modules/ContentKit/Sources/ContentKit.swift +++ b/Modules/ContentKit/Sources/ContentKit.swift @@ -8,16 +8,4 @@ let log = LogKit.createLoggerFor(module: "ContentKit") // MARK: - ContentKit -public class ContentKit { - // MARK: Lifecycle - - private init() { - // nothing to do - } - - // MARK: Public - - public var shared: ContentKit { - ContentKit() - } -} +public enum ContentKit {}