11 lines
136 B
Go
11 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")
|
||
|
}
|