mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-19 15:54:14 +01:00
8 lines
116 B
Go
8 lines
116 B
Go
package v1
|
|
|
|
import "net/http"
|
|
|
|
func Index(w http.ResponseWriter, r *http.Request) {
|
|
w.Write([]byte("API ready"))
|
|
}
|