mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-19 20:32:35 +02:00
11 lines
166 B
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()))
|
|
}
|