10 lines
209 B
Go
10 lines
209 B
Go
package server
|
|
|
|
import (
|
|
"backend/util"
|
|
"net/http"
|
|
)
|
|
|
|
func handlePictureRequest(w http.ResponseWriter, r *http.Request) {
|
|
util.Logformat(util.INFO, "Calling 'handlePictureRequest' with '%s'\n", r.Method)
|
|
}
|