fix python isprime

This commit is contained in:
2019-10-18 22:55:26 +02:00
parent 4e59fa8048
commit 5adde814c9
4 changed files with 9 additions and 9 deletions

View File

@ -8,7 +8,6 @@ import (
)
func handler(w http.ResponseWriter, r *http.Request) {
log.Print("Hello world received a request.")
target := os.Getenv("TARGET")
if target == "" {
target = "World"
@ -17,8 +16,6 @@ func handler(w http.ResponseWriter, r *http.Request) {
}
func main() {
log.Print("Hello world sample started.")
http.HandleFunc("/", handler)
port := os.Getenv("PORT")