GoDoxy/internal/api/v1/index.go
2025-03-28 07:39:26 +08:00

11 lines
184 B
Go

package v1
import (
"net/http"
"github.com/yusing/go-proxy/internal/net/gphttp"
)
func Index(w http.ResponseWriter, r *http.Request) {
gphttp.WriteBody(w, []byte("API ready"))
}