//
// Copyright © 2026 Nevis Security AG. All rights reserved.
//

import NevisMobileAuthentication

struct LocalDeleteAllDataMethodHandler {
	func execute(method: ReactMethod) async {
		LocalDataManagement.deleteAllData()
		MethodChannelHandler.shared.resolve(method: method)
	}
}
