1// SPDX-FileCopyrightText: Copyright The Lima Authors 2// SPDX-License-Identifier: Apache-2.0 3 4package main 5 6import ( 7 "errors" 8 9 "github.com/spf13/cobra" 10) 11 12func 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