// // Copyright Amazon.com Inc. or its affiliates. // All Rights Reserved. // // SPDX-License-Identifier: Apache-2.0 // // swiftlint:disable all import Amplify import Foundation // Contains the set of classes that conforms to the `Model` protocol. final public class AmplifyModels: AmplifyModelRegistration { public let version: String = "9ddf09113aaee75fdec53f41fd7a73d7" public func registerModels(registry: ModelRegistry.Type) { ModelRegistry.register(modelType: Post.self) } }