11 lines
163 B
Go
11 lines
163 B
Go
package qbit
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func (q *QBit) handleLogin(w http.ResponseWriter, r *http.Request) {
|
|
w.WriteHeader(http.StatusOK)
|
|
w.Write([]byte("Ok."))
|
|
}
|