mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-19 20:32:35 +02:00
7 lines
116 B
Go
7 lines
116 B
Go
package v1
|
|
|
|
import "net/http"
|
|
|
|
func Index(w http.ResponseWriter, r *http.Request) {
|
|
w.Write([]byte("API ready"))
|
|
}
|