1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package handlers
import (
"net/http"
"github.com/containers/libpod/libpod/define"
"github.com/containers/libpod/pkg/api/handlers/utils"
)
func CreateExec(w http.ResponseWriter, r *http.Request) {
utils.Error(w, "function not implemented", http.StatusInternalServerError, define.ErrNotImplemented)
}
func StartExec(w http.ResponseWriter, r *http.Request) {
utils.Error(w, "function not implemented", http.StatusInternalServerError, define.ErrNotImplemented)
}
func ResizeExec(w http.ResponseWriter, r *http.Request) {
utils.Error(w, "function not implemented", http.StatusInternalServerError, define.ErrNotImplemented)
}
func InspectExec(w http.ResponseWriter, r *http.Request) {
utils.Error(w, "function not implemented", http.StatusInternalServerError, define.ErrNotImplemented)
}
|