mirror of
https://github.com/aler9/rtsp-simple-server
synced 2025-12-24 11:51:18 +08:00
10 lines
135 B
Go
10 lines
135 B
Go
//go:build !enableUpgrade
|
|
|
|
package core
|
|
|
|
import "fmt"
|
|
|
|
func upgrade() error {
|
|
return fmt.Errorf("upgrade command is not available")
|
|
}
|