13 lines
392 B
Swift
13 lines
392 B
Swift
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// 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")
|
|
}
|