blob: b91741a463c8e740afd482e899ae17525bcfe7d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright (c) Tailscale Inc & contributors
// SPDX-License-Identifier: BSD-3-Clause
import Foundation
struct Notifications {
// Stops the virtual machine and saves its state
static var stop = Notification.Name("io.tailscale.macvmhost.stop")
// Pauses the virtual machine and exits without saving its state
static var halt = Notification.Name("io.tailscale.macvmhost.halt")
}
|