wings/api/handlers_server.go
Jakob Schrettenbrunner 3d789c0541 api: better routes
2017-08-02 23:23:41 +02:00

56 lines
676 B
Go

package api
import "github.com/gin-gonic/gin"
func handleGetServers(c *gin.Context) {
}
func handlePostServers(c *gin.Context) {
}
func handleDeleteServers(c *gin.Context) {
}
func handleGetServer(c *gin.Context) {
}
func handlePatchServer(c *gin.Context) {
}
func handlePostServerReinstall(c *gin.Context) {
}
func handlePostServerPassword(c *gin.Context) {
}
func handlePostServerRebuild(c *gin.Context) {
}
func handlePutServerPower(c *gin.Context) {
}
func handlePostServerCommand(c *gin.Context) {
}
func handleGetServerLog(c *gin.Context) {
}
func handlePostServerSuspend(c *gin.Context) {
}
func handlePostServerUnsuspend(c *gin.Context) {
}