diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2024-10-09 11:36:02 -0400 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2024-10-09 11:36:02 -0400 |
| commit | 81c0c8f70ebe2247ba2de8ee879be71ded6acee9 (patch) | |
| tree | 2045df54510d905094c55f5cea955bf52bf6ddb6 /api/api.go | |
| parent | 9b13628980d48e5efd0cc582c80a4a3e94a59a25 (diff) | |
Add end point stubs for container controls
Diffstat (limited to 'api/api.go')
| -rw-r--r-- | api/api.go | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -65,6 +65,16 @@ func VttRedirect(w http.ResponseWriter, req *http.Request) { http.Redirect(w, req, VTT_URL, http.StatusMovedPermanently) } +func VttStart(w http.ResponseWriter, req *http.Request) { + +} +func VttStop(w http.ResponseWriter, req *http.Request) { + +} +func VttRestart(w http.ResponseWriter, req *http.Request) { + +} + func VttLogs(w http.ResponseWriter, req *http.Request) { var lines uint = 0 |
