GoDoxy/internal/api/v1/version.go

11 lines
166 B
Go

package v1
import (
"net/http"
"github.com/yusing/go-proxy/pkg"
)
func GetVersion(w http.ResponseWriter, r *http.Request) {
w.Write([]byte(pkg.GetVersion()))
}