56 lines
585 B
Go
56 lines
585 B
Go
package api
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func ListServers(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func StoreServer(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func DeleteServer(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func ViewServer(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func UpdateServer(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func ReinstallServer(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func SetServerPassword(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func RebuildServer(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func PowerServer(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func SendCommandToServer(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func GetLogForServer(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func SuspendServer(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func UnsuspendServer(c *gin.Context) {
|
|
|
|
}
|