mirror of
https://github.com/donl/gPanel.git
synced 2026-06-30 06:12:06 -06:00
8 lines
198 B
Go
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
|
|
}
|