Files
godoxy-yusing/src/api/v1/index.go
2024-08-01 10:06:42 +08:00

8 lines
116 B
Go

package v1
import "net/http"
func Index(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("API ready"))
}