diff --git a/Sources/JSONAPI/Meta/Meta.swift b/Sources/JSONAPI/Meta/Meta.swift index 8d035fe..f653edc 100644 --- a/Sources/JSONAPI/Meta/Meta.swift +++ b/Sources/JSONAPI/Meta/Meta.swift @@ -5,8 +5,6 @@ // Created by Mathew Polzin on 11/21/18. // -import Foundation - /// Conform a type to this protocol to indicate it can be encoded to or decoded from /// the meta data attached to a component of a JSON API document. Different meta data /// can be stored all over the place: On the root document, on a resource object, on diff --git a/Sources/JSONAPI/Resource/Transformer.swift b/Sources/JSONAPI/Resource/Transformer.swift index 13cc8fc..53755d1 100644 --- a/Sources/JSONAPI/Resource/Transformer.swift +++ b/Sources/JSONAPI/Resource/Transformer.swift @@ -5,8 +5,6 @@ // Created by Mathew Polzin on 11/17/18. // -import Foundation - public protocol Transformer { associatedtype From associatedtype To