mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-18 07:24:31 +01:00
12 lines
184 B
Go
12 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"))
|
|
}
|