waveterm/cmd/wsh/main-wsh.go
Sylvie Crowe 6bc3054733
SSH Wsh Install (#225)
This change adds the wsh installation to remote shells, so they have
access to its commands.
2024-08-15 21:32:08 -07:00

20 lines
375 B
Go

// Copyright 2024, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
package main
import (
"github.com/wavetermdev/thenextwave/cmd/wsh/cmd"
"github.com/wavetermdev/thenextwave/pkg/wavebase"
)
// set by main-server.go
var WaveVersion = "0.0.0"
var BuildTime = "0"
func main() {
wavebase.WaveVersion = WaveVersion
wavebase.BuildTime = BuildTime
cmd.Execute()
}