mirror of
https://github.com/pterodactyl/wings.git
synced 2026-04-25 15:25:05 -05:00
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) {
|
|
|
|
}
|