14 lines
230 B
Go
14 lines
230 B
Go
package handler
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
func (h *Handler) UploadAvatar(w http.ResponseWriter, r *http.Request) {
|
|
fmt.Printf("")
|
|
}
|
|
|
|
func (h *Handler) UploadImage(w http.ResponseWriter, r *http.Request) {
|
|
fmt.Printf("")
|
|
}
|