mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
13 lines
178 B
Go
13 lines
178 B
Go
|
package members
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"demodesk/neko/internal/utils"
|
||
|
)
|
||
|
|
||
|
func (h *MembersHandler) membersList(w http.ResponseWriter, r *http.Request) {
|
||
|
|
||
|
utils.HttpSuccess(w)
|
||
|
}
|