wip: Mark update slots with XX:, add pkg/server/container.go

This commit is contained in:
Michael Hohn
2024-06-13 08:46:05 -07:00
committed by =Michael Hohn
parent 5b9df73424
commit 8df9673897
9 changed files with 434 additions and 46 deletions

View File

@@ -1,3 +1,14 @@
package server
import "net/http"
type Commander interface{}
type CommanderAPI interface {
MirvaRequestID(w http.ResponseWriter, r *http.Request)
MirvaRequest(w http.ResponseWriter, r *http.Request)
RootHandler(w http.ResponseWriter, r *http.Request)
MirvaStatus(w http.ResponseWriter, r *http.Request)
MirvaDownloadArtifact(w http.ResponseWriter, r *http.Request)
MirvaDownloadServe(w http.ResponseWriter, r *http.Request)
}