mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 12:42:34 +02:00
11 lines
184 B
Go
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"))
|
|
}
|