mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 04:42:33 +02:00
11 lines
181 B
Go
11 lines
181 B
Go
package v1
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
. "github.com/yusing/go-proxy/internal/api/v1/utils"
|
|
)
|
|
|
|
func Index(w http.ResponseWriter, r *http.Request) {
|
|
WriteBody(w, []byte("API ready"))
|
|
}
|