// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace autoShell.Services;
///
/// Abstracts debugger operations for testability.
///
internal interface IDebuggerService
{
///
/// Launches and attaches a debugger to the process.
///
void Launch();
}