pehpeh API server in golang
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 satır
196B

  1. package main
  2. import (
  3. "io"
  4. "net/http"
  5. _ "git.thevis.us/skepto/env"
  6. _ "git.thevis.us/skepto/rex"
  7. )
  8. func Index(w http.ResponseWriter, r *http.Request) {
  9. io.WriteString(w, "pehpeh-api")
  10. }