16 lines
196 B
Go
16 lines
196 B
Go
|
package webcontroller
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/julienschmidt/httprouter"
|
||
|
)
|
||
|
|
||
|
func (wc *WebController) handleLogin(
|
||
|
w http.ResponseWriter,
|
||
|
r *http.Request,
|
||
|
p httprouter.Params,
|
||
|
) {
|
||
|
|
||
|
}
|