amplify-swift/AmplifyPlugins/Auth/Sources/AWSCognitoAuthPlugin/HubEvents/AuthHubEventBehavior.swift

20 lines
312 B
Swift

//
// Copyright Amazon.com Inc. or its affiliates.
// All Rights Reserved.
//
// SPDX-License-Identifier: Apache-2.0
//
import Foundation
protocol AuthHubEventBehavior {
func sendUserSignedInEvent()
func sendUserSignedOutEvent()
func sendUserDeletedEvent()
func sendSessionExpiredEvent()
}