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