mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-27 03:55:36 +00:00
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")
|
||
|
}
|