mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-02 19:21:13 +02:00
20 lines
475 B
Go
20 lines
475 B
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
// Package talosctl provides the talosctl utility implementation.
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
_ "github.com/siderolabs/talos/cmd/talosctl/acompat"
|
|
"github.com/siderolabs/talos/cmd/talosctl/cmd"
|
|
)
|
|
|
|
func main() {
|
|
if err := cmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|