gPanel/pkg/api/server/start.go
2017-11-06 12:10:47 -06:00

8 lines
198 B
Go

// Package server is a child of package api to handle api calls concerning the server
package server
import "net/http"
func Start(res http.ResponseWriter, req *http.Request) bool {
return true
}