craban/server/api/auth.go

11 lines
136 B
Go
Raw Normal View History

package api
import (
"fmt"
"net/http"
)
func (a *API) Login(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "FROM API")
}