16 lines
217 B
Go
16 lines
217 B
Go
//go:build !remote
|
|
|
|
package libpod
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func PlayKube(w http.ResponseWriter, r *http.Request) {
|
|
KubePlay(w, r)
|
|
}
|
|
|
|
func PlayKubeDown(w http.ResponseWriter, r *http.Request) {
|
|
KubePlayDown(w, r)
|
|
}
|