Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
lima-vm
GitHub Repository: lima-vm/lima
Path: blob/master/cmd/limactl/start-at-login_windows.go
2655 views
1
// SPDX-FileCopyrightText: Copyright The Lima Authors
2
// SPDX-License-Identifier: Apache-2.0
3
4
package main
5
6
import (
7
"errors"
8
9
"github.com/spf13/cobra"
10
)
11
12
func startAtLoginAction(_ *cobra.Command, _ []string) error {
13
return errors.New("start-at-login command is only supported on macOS and Linux right now")
14
}
15
16