amplify-swift/Amplify/DevMenu/DevMenuBehavior.swift

15 lines
281 B
Swift

//
// Copyright Amazon.com Inc. or its affiliates.
// All Rights Reserved.
//
// SPDX-License-Identifier: Apache-2.0
//
import Foundation
/// A protocol describing the behaviors of a Developer Menu
public protocol DevMenuBehavior {
/// Display the menu
func showMenu()
}