You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
392 B
12 lines
392 B
// 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")
|
|
}
|
|
|