20 lines
515 B
Go
20 lines
515 B
Go
package engine
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/labstack/echo"
|
|
)
|
|
|
|
// GetInfo return the relevant repo specific info to the client
|
|
func (Server *GVCServer) GetInfo(context echo.Context) error {
|
|
repo := context.Param("repoName")
|
|
return context.JSON(http.StatusAccepted, repo)
|
|
}
|
|
|
|
// Hello just verifies the server is running //TODO remove this, just extra shit we are sending
|
|
func (Server *GVCServer) Hello(context echo.Context) error {
|
|
helloMsg := "server alive"
|
|
return context.JSON(http.StatusOK, helloMsg)
|
|
}
|