blob: 74830badbf5b893b7bd3f52418d3ecd00cce4e04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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)
}
|