mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-20 02:00:05 -08:00
9 lines
135 B
Go
9 lines
135 B
Go
//go:build !enableUpgrade
|
|
|
|
package core
|
|
|
|
import "fmt"
|
|
|
|
func upgrade() error {
|
|
return fmt.Errorf("upgrade command is not available")
|
|
}
|