20 lines
312 B
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()
|
|
}
|